/*
$$$$$$$$\                                       $$\     
$$  _____|                                      $$ |    
$$ |    $$$$$$\   $$$$$$\   $$$$$$\   $$$$$$\ $$$$$$\   
$$$$$\ $$  __$$\ $$  __$$\ $$  __$$\ $$  __$$\\_$$  _|  
$$  __|$$ /  $$ |$$ |  \__|$$ /  $$ |$$ /  $$ | $$ |    
$$ |   $$ |  $$ |$$ |      $$ |  $$ |$$ |  $$ | $$ |$$\ 
$$ |   \$$$$$$  |$$ |      \$$$$$$$ |\$$$$$$  | \$$$$  |
\__|    \______/ \__|       \____$$ | \______/   \____/ 
                           $$\   $$ |                   
                           \$$$$$$  |                   
                            \______/                    */

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../Assets/Fonts/PPNeueMachina-PlainUltrabold.otf') format('opentype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../Assets/Fonts/ppneuemontreal-bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

:root {
    --color-bg: #EAE6DE;
    --color-bg-light: #F2EFE8;
    --color-bg-dark: #DDD9D1;
    --color-text: #1F1F1F;
    --color-text-light: rgba(31, 31, 31, 0.7);
    --color-accent: #D97642;
    --color-white: #FFFFFF;

    --font-heading: 'PP Neue Machina', sans-serif;
    --font-body: 'PP Neue Montreal', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
}

main {
    min-height:100vh;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 40px 16px;
    margin-top: calc(80px + 40px);
}

.forgot-wrapper {
    width: 100%;
    max-width: 500px;
    background: var(--color-bg-light);
    border: 3px solid var(--color-text);
    border-radius: 14px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(31, 31, 31, 0.15);
}

.title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.description {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-text);
    background: white;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(217, 118, 66, 0.1);
}

.input-field::placeholder {
    color: rgba(31, 31, 31, 0.45);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-text);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
    font-family: var(--font-body);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--color-accent);
}

.back-link {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 500;
}

.back-link a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
}

.back-link a:hover {
    text-decoration: underline;
}

/*
$$$$$$$\                                                              $$\                      
$$  __$$\                                                             \__|                     
$$ |  $$ | $$$$$$\   $$$$$$$\  $$$$$$\   $$$$$$\  $$$$$$$\   $$$$$$$\ $$\ $$\    $$\  $$$$$$\  
$$$$$$$  |$$  __$$\ $$  _____|$$  __$$\ $$  __$$\ $$  __$$\ $$  _____|$$ |\$$\  $$  |$$  __$$\ 
$$  __$$< $$$$$$$$ |\$$$$$$\  $$ /  $$ |$$ /  $$ |$$ |  $$ |\$$$$$$\  $$ | \$$\$$  / $$$$$$$$ |
$$ |  $$ |$$   ____| \____$$\ $$ |  $$ |$$ |  $$ |$$ |  $$ | \____$$\ $$ |  \$$$  /  $$   ____|
$$ |  $$ |\$$$$$$$\ $$$$$$$  |$$$$$$$  |\$$$$$$  |$$ |  $$ |$$$$$$$  |$$ |   \$  /   \$$$$$$$\ 
\__|  \__| \_______|\_______/ $$  ____/  \______/ \__|  \__|\_______/ \__|    \_/     \_______|
                              $$ |                                                             
                              $$ |                                                             
                              \__|                                                             */

@media (max-width: 830px) {
    main {
        margin-top: calc(70px + 20px);
    }

    .title {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    main {
        margin-top: calc(65px + 16px);
        padding: 30px 12px;
    }

    .forgot-wrapper {
        padding: 40px 28px;
    }

    .title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .input-field {
        padding: 12px 14px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    main {
        margin-top: calc(60px + 12px);
        padding: 20px 8px;
    }

    .forgot-wrapper {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .title {
        font-size: 24px;
    }

    .description {
        font-size: 12px;
    }

    .input-field {
        padding: 11px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 11px;
        border-radius: 10px;
    }
}