
.login-background {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.logo {
    margin-bottom: 1.5rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 260px;
    gap: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #ffffff; 
    padding: 0.75rem;
    border-radius: 0.25rem;
    backdrop-filter: blur(4px); 
}

.icon {
    color: #000000;
    margin-right: 0.5rem;
}
.input-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: #000000; 
    background-color: #ffffff; 
    padding: 0 0.5rem;
}





.options {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
    color: white;
    font-size: 0.875rem;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-item i {
    margin-bottom: 0.25rem;
}

.option-item a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.option-item a:hover {
    text-decoration: underline;
}


.footer {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    font-size: 0.75rem;
    color: white;
    text-align: center;
}



.login-form-button {
    width: 50%;
    padding: 0.75rem;
    background-color: #14b8a6;
    color: white;
    font-weight: bold;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.button {
    width: 50%;
    padding: 0.75rem;
    background-color: #14b8a6;
    color: white;
    font-weight: bold;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.button:hover {
    background-color: #10b5a1;
}


.button {
    width: 50%; 
    padding: 0.75rem;
    background-color: #14b8a6;
    color: white;
    font-weight: bold;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.button:hover {
    background-color: #10b5a1;
}

.login-form {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 20vh; 
}

.input-group {
    margin-bottom: 1rem;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}




@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#error-modal {
    position: fixed;
    top: 20px;      
    right: 20px;    
    background-color: rgba(56, 202, 228, 0.747);
    color: white;
    padding: 20px;
    font-size: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    text-align: center;
    width: 300px;
    transform: none;  
}

#close-button {
    position: absolute;
    top: 2px;
    right: 10px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

 
