body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

@media (max-width: 480px) {
    .login-container {
        box-shadow: none;
        border-radius: 0;
        padding: 1.5rem;
    }
}


h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.input-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}


input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-bottom: 1px solid #E1E1E1;
    box-sizing: border-box;
    background-color: transparent;
}


button {
    width: 100%;
    padding: 0.8rem;
    background-color: #0292d9;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0056b3;
}

.signup-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


.input-group input {
    border-bottom: 1px solid #E1E1E1; /* Default border color */
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-bottom: 1px solid #0292D9; /* Changed border color for focused state */
    outline: none;
}


.input-group input:focus::placeholder {
    font-size: 0.8em;
    transform: translateY(-10px);
    color: #0292D9; /* Added this line */
    transition: all 0.3s ease;
}



.additional-options {
    margin: 1rem 0;
    font-size: 0.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stay-signed-in {
    color: #666;
}

.help-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    position: relative; /* Added this line */
}


.help-links a {
    color: #0292D9;
    text-decoration: none;
}

.help-links a:hover {
    text-decoration: underline;
}


.terms-notice {
    margin-top: 2rem;
    font-size: 0.8em;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.terms-notice a {
    color: #007bff;
    text-decoration: none;
}

.terms-notice a:hover {
    text-decoration: underline;
}


.create-account {
    margin-top: 0.5rem;
    color: #666;
    text-align: center;
}

.create-account a {
    color: #007bff;
    text-decoration: none;
}

.create-account a:hover {
    text-decoration: underline;
}


.warning-alert {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #ffdfdf;
    border: 1px solid #c74545;
    border-left: 6px solid #c74545;

    border-radius: 4px;
    color: #850404;
    font-size: 0.9em;
}

.warning-alert p {
    margin: 0.3rem 0;
}

/* Add these styles at the top of your CSS file */
.mini-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0292D9;
}

.header-links {
    display: flex;
    gap: 1.5rem;
}

.header-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.header-links a:hover {
    color: #0292D9;
    text-decoration: underline;
}

/* Add this to your existing .login-container */
.login-container {
    margin-top: 6rem; /* Add space for the fixed header */
    /* ... existing styles ... */
}