body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* .logo {
    float: left;
    margin-right: 10px;
} */


h1 {
    font-size: 28px;
    color: #1a3d1c;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

input {
    width: 95%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #6e8efb;
    outline: none;
}

/* button {
    width: 100%;
    padding: 12px;
    background: #6e8efb;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #5a78e4;
} */

.error {
    color: #e74c3c;
    font-size: 14px;
    margin: 10px 0;
}

.signup-link {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.signup-link a {
    color: #6e8efb;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


.copyright {
    font-size: 12px; /* Adjust the font size as needed */
    color: #777; /* Light gray color for the text */
    margin-top: 20px; /* Space above the copyright text */
    text-align: center; /* Center the text */
    font-weight: normal; /* Use normal font weight */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}