* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #e0f7fa, #f5faff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-section {
    width: 100%;
    padding: 1rem;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    width: 100%;
    margin: auto;
}
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 10px;
        outline: none;
        transition: 0.2s ease;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: all;
    cursor: pointer;
    font-family: 'Material Icons';
    font-size: 22px;
    line-height: 1;
    color: #666;
    user-select: none;
}
.login-box h2 {
    text-align: center;
    color: #222;
    margin-bottom: 1rem;
    font-weight: 600;
}

hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 0.35rem;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: 0.2s ease;
}

input:focus {
    border-color: #08acad;
    box-shadow: 0 0 0 3px rgba(8, 172, 173, 0.1);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.options label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.options a {
    color: #08acad;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 0.75rem;
    background: #08acad;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #067d8e;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-box {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}