/*
$$\                          $$\           
$$ |                         \__|          
$$ |      $$$$$$\   $$$$$$\  $$\ $$$$$$$\  
$$ |     $$  __$$\ $$  __$$\ $$ |$$  __$$\ 
$$ |     $$ /  $$ |$$ /  $$ |$$ |$$ |  $$ |
$$ |     $$ |  $$ |$$ |  $$ |$$ |$$ |  $$ |
$$$$$$$$\\$$$$$$  |\$$$$$$$ |$$ |$$ |  $$ |
\________|\______/  \____$$ |\__|\__|  \__|
                   $$\   $$ |              
                   \$$$$$$  |              
                    \______/               
*/

@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;
    min-height: 100vh;
}

.wrap {
    width: 100%;
    max-width: 620px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 80px 20px 40px 20px;
    text-align: center;
    margin-top: 200px;
}

.body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 18px;
}


.brand {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 28px;
    text-align: center;
}

.form-inner {
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

.field {
    margin-bottom: 18px;
}

.label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 8px 4px;
}

.input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 2.5px solid var(--color-text);
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-body);
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease;
    display: block;
    margin: auto;
}

.input::placeholder {
    color: rgba(31, 31, 31, .45);
    font-weight: 600;
}

.input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(217, 118, 66, .18);
}

.pw-wrap {
    position: relative;
}

.pw-wrap .input {
    padding-right: 54px;
}

.pw-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    color: var(--color-text);
    transition: background .15s ease, color .15s ease;
}

.pw-toggle:hover {
    background: rgba(31, 31, 31, .06);
    color: var(--color-accent);
}

.pw-toggle i {
    font-size: 18px;
    line-height: 1;
}

.btn {
    width: 75%;
    height: 52px;
    border-radius: 14px;
    border: 0;
    background: var(--color-text);
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    margin: 10px auto 0;
    display: block;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--color-accent);
    box-shadow: 0 8px 24px rgba(217, 118, 66, .28);
}

.divider {
    margin: 18px 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(31, 31, 31, .55);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    justify-content: center;
}

.divider::before,
.divider::after {
    content: "";
    height: 2px;
    background: rgba(31, 31, 31, .25);
    flex: 1;
    border-radius: 99px;
}

.social {
    display: grid;
    gap: 12px;
}

.social-btn {
    width: 90%;
    height: 54px;
    border-radius: 14px;
    border: 2.5px solid var(--color-text);
    background: #fff;
    color: var(--color-text);
    font-weight: 900;
    letter-spacing: .5px;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.social-btn i {
    font-size: 20px;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, .55);
}

.links {
    margin-top: 16px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.links a {
    text-decoration: none;
    font-weight: 800;
    color: var(--color-accent);
}

.links a:hover {
    color: #C56535;
}

.muted {
    color: rgba(31, 31, 31, .7);
    font-weight: 600;
}

#msg {
    width: 90%;
    margin: 14px auto 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 2.5px solid var(--color-text);
    background: rgba(255, 255, 255, .7);
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
}


/*$$$$$$$\                                                              $$\                      
$$  __$$\                                                             \__|                     
$$ |  $$ | $$$$$$\   $$$$$$$\  $$$$$$\   $$$$$$\  $$$$$$$\   $$$$$$$\ $$\ $$\    $$\  $$$$$$\  
$$$$$$$  |$$  __$$\ $$  _____|$$  __$$\ $$  __$$\ $$  __$$\ $$  _____|$$ |\$$\  $$  |$$  __$$\ 
$$  __$$< $$$$$$$$ |\$$$$$$\  $$ /  $$ |$$ /  $$ |$$ |  $$ |\$$$$$$\  $$ | \$$\$$  / $$$$$$$$ |
$$ |  $$ |$$   ____| \____$$\ $$ |  $$ |$$ |  $$ |$$ |  $$ | \____$$\ $$ |  \$$$  /  $$   ____|
$$ |  $$ |\$$$$$$$\ $$$$$$$  |$$$$$$$  |\$$$$$$  |$$ |  $$ |$$$$$$$  |$$ |   \$  /   \$$$$$$$\ 
\__|  \__| \_______|\_______/ $$  ____/  \______/ \__|  \__|\_______/ \__|    \_/     \_______|
                              $$ |                                                             
                              $$ |                                                             
                              \__|                                                             */


@media (max-width: 1366px) {
    .wrap {
        width: 100%;
        max-width: 620px;
        min-height: 100vh;
        margin: 0 auto;
        padding: 80px 20px 40px 20px;
        text-align: center;
        margin-top: 75px;
    }
}

@media (max-width: 830px) {
    .wrap {
        margin-top: calc(70px + 20px);
    }

    .brand {
        font-size: 48px;
    }
}

@media (max-width: 520px) {
    .wrap {
        margin-top: calc(65px + 16px);
    }

    .brand {
        font-size: 44px;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
    }

    .form-inner {
        width: 100%;
    }

    .social-btn {
        width: 100%;
    }

    #msg {
        width: 100%;
    }

    .field {
        margin-bottom: 16px;
    }

    .input {
        height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .wrap {
        margin-top: calc(60px + 12px);
    }

    .brand {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .input {
        height: 44px;
        font-size: 13px;
    }

    .btn {
        height: 48px;
        font-size: 12px;
    }
}