body {
    background-color: #f3f2ef;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.forgot-password-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.linkedin-logo {
    color: #0a66c2;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #0a66c2;
    box-shadow: 0 0 0 0.25rem rgba(10, 102, 194, 0.25);
}

.btn-reset {
    background-color: #0a66c2;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-reset:hover {
    background-color: #004182;
}

.back-to-login-link {
    display: block;
    margin-top: 25px;
    color: #0a66c2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.back-to-login-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .forgot-password-container {
        padding: 30px 20px;
        margin: 20px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .linkedin-logo {
        font-size: 2rem;
    }
}
