@font-face {
    font-family: 'Manifold Extended CF';
    src: url('/assets/fonts/manifold-extended-cf.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FormaDJR';
    src: url('/assets/fonts/FormaDJRV.woff2') format('woff2');
    font-weight: 100 900; /* wght */
    font-stretch: 75% 100%; /* wdth */
    font-style: normal; /* slnt */
    font-variation-settings: 'opsz' 12, 'slnt' 0, 'wdth' 100, 'wght' 400; /* opsz, slnt, wdth, wght */
}
@font-face {
    font-family: 'Input Sans';
    src: url('/assets/fonts/InputSansNarrow-Medium_TRIAL.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

*{
    font-family: inherit;
    box-sizing: border-box;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #062a42;
    background-image: radial-gradient(circle, #062a42,rgb(11, 40, 60));
    font-family: 'FormaDJR', sans-serif;
    color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    padding: 0;
    margin: 0;
}   

.form-group { 
    margin-bottom: 15px; 
}


input, textarea { 
    width: 100%; padding: 8px; 
}

button { padding: 10px 20px; }

#result { 
    margin-top: 20px; 
    padding: 10px;
    text-align: center;
}

.success { 
    color: #0076A3; 
}

.error { 
    color: red; 
}

.logo {
    width: 300px;
}

h2{
    font-weight: 700;
    letter-spacing: 4px;
    font-variation-settings: 'wdth' 100;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
}
p {
    font-family: 'Lumon', sans-serif;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: .25px;
    text-align: center;
}
input {
    background-color: rgba(0, 0, 0, 0.07);
    color: #0076A3;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: inherit;
    padding: 14px;
}

button:focus,input:focus{
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}

button {
    background-color: #034E82;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: inherit;
    padding: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}
button:hover{
    background-color:rgb(16, 111, 180);
}
.container{
    border-top:20px solid #0076A3;
    max-width: 800px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 150px rgba(6, 8, 37, 0.739);
    min-height: 50vh;
    height: 70%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .container {
        padding: 24px;
        width: 100%;
        border-top: 10px solid #0076A3;
        height: 100vh;
        border-radius: 0;
    }
}

form{
    width: 100%;
    font-size: 20px;
    max-width: 420px;;
}

/* Add success page specific styles */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-message {
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .success-container {
        padding: 20px;
    }
    
    .success-message {
        font-size: 16px;
    }
}