
body {
    font-family: 'Inter', sans-serif;
    background-color: #C1C1B8; 
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; 
}


.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; 
    text-align: center;
}

.login-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.brand-name {
    color: #5D8F36;
    font-weight: 700;
    margin-bottom: 30px;
}


.custom-input {
    background-color: #f1f3f5;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: #79AC31;
    box-shadow: 0 0 0 0.25rem rgba(121, 172, 49, 0.25);
    outline: none;
}


.btn-login {
    background-color: #79AC31;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #5D8F36;
    transform: translateY(-2px);
}


.register-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.register-link a {
    color: #79AC31;
    text-decoration: none;
    font-weight: 700;
}

.register-link a:hover {
    text-decoration: underline;
}