/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #FF1E1E;
    /* Vibrant Red */
    --text-color: #333;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #888;
    --card-bg: #f4f4f4;
    /* Light grey for the card background */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    /* Light background unlike login/signup */
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start;
    /* Align to left */
    align-items: center;
    gap: 40px;
    /* Space between logo and nav */
    border-bottom: 1px solid #eee;
    /* Subtle separator */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

.sub-brand {
    font-size: 10px;
    color: #666;
    /* Consistent with light theme */
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.password-assistance-container {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    /* Slightly softer corners */
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin-bottom: 20px;
}

.password-assistance-container h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.password-assistance-container p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 15px;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    background-color: var(--white);
}

.form-group input:focus {
    border-color: #aaa;
}

.btn-continue {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-continue:hover {
    background-color: #d90000;
}

.back-to-login {
    margin-top: 1rem;
    font-size: 14px;
    font-weight: 600;
}

.back-to-login a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Adjustments */
@media (max-width: 600px) {
    .password-assistance-container {
        padding: 2rem;
    }

    header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    nav {
        gap: 20px;
        width: 100%;
        justify-content: space-between;
    }
}