/* login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: linear-gradient(rgba(14, 111, 125, 0.85), rgba(18, 129, 145, 0.85)),
        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.header img {
    width: 250px;
    margin-bottom: 15px;
}

.header h3 {
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 18px;
}

.login-card {
    background-color: #b3d1d6;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-card h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.login-card p {
    color: #34495e;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    background-color: #ffffff;
}

.input-group input::placeholder {
    color: #95a5a6;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 30px;
}

.form-options label {
    color: #2c3e50;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.form-options input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #0b5e70;
}

.form-options a,
.signup-link a {
    color: #a84b4b;
    text-decoration: none;
    font-weight: 500;
}

.form-options a:hover,
.signup-link a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #0b5e70;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

button:hover {
    background-color: #084553;
}

.signup-link {
    font-size: 12px;
    color: #2c3e50;
    font-weight: 500;
}

@media (max-width: 500px) {
    .login-card {
        width: 90%;
        padding: 30px 20px;
    }

    .header img {
        width: 200px;
    }
}