/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0B;
    color: #EDEDED;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}


/* =========================
   LAYOUT
========================= */

.application-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px;
}

.application-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}


/* =========================
   BACK LINK
========================= */

.back-link {
    margin-bottom: 60px;
}

.back-link a {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #8A8A8A;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #BFA36A;
}


/* =========================
   HEADER
========================= */

.application-header {
    margin-bottom: 80px;
}

.application-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin-bottom: 30px;
    position: relative;
}

.application-header h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgba(191,163,106,0.5);
    margin-top: 20px;
}

.application-header p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #CFCFCF;
    margin-bottom: 18px;
}

.sub-note {
    font-size: 0.95rem;
    color: #9A9A9A;
}


/* =========================
   FORM ZONE
========================= */

.form-zone {
    padding: 60px 50px;
    border: 1px solid rgba(191,163,106,0.15);
    background-color: #111112;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.35),
        0 3px 10px rgba(0,0,0,0.25);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .application-wrapper {
        padding: 100px 20px;
    }

    .form-zone {
        padding: 40px 30px;
    }

}