html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type="button"],[type="reset"],[type="submit"],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -o-font-smoothing: antialiased;
}
/* Reset form elements */
button,
input,
select,
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    outline: none;
    border-radius: 0;
}

select {
    cursor: pointer;
}

button {
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
button {
    transition: all 120ms ease-in-out;
    font-weight: 600;
}
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    background-color: #04151C;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
}

h1 {
    font-size: 45px;
    line-height: 1;
}

h2 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

p {
    margin: 0;
}

.logo {
    width: 103px;
    height: 64px;
    object-fit: contain;
    background-image: url(logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 48px;
}

.container {
    padding: 24px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
}

.page-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    width: 100%;
}

.large-text {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.small-text {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.large-text strong {
    color: #fff;
}

hr {
    margin: 16px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-item-icon {
    width: 24px;
    height: 24px;
    background-image: url(check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.text-container {
    width: 100%;
    max-width: 440px;
}

.form-wrapper {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    background-color: #012635;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group label {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.form-group .required {
    color: #F97066;
}

.form-group input {
    width: 100%;
    padding: 14px 10px;
    background: #023347;
    border: 1px solid #07445C;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 200ms ease-in-out;
}

.form-group input:focus {
    border-color: #0E6C91;
    background: #021D28;
}

.form-group input::placeholder {
    color: #488096;
}

button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: #7CE0AE;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: all 200ms ease-in-out;
}

button[type="submit"]:hover {
    background: #8ff1bf;
}

button[type="submit"]:active {
    background: #6bc99c;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 48px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    gap: 8px;
    flex-wrap: wrap;
}

.under-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    gap: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 24px;
}

.under-footer-text {
    max-width: 600px;
}

.under-footer img {
    opacity: 0.5;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message {
    background-color: #2c7b2f;
    color: white;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 38px;
    }
    .under-footer {
        flex-wrap: wrap;
    }

    .under-footer img {
        padding: 0;
        border: none;
    }
}

@media screen and (max-width: 950px) {
    .page-content {
        flex-direction: column;
        gap: 24px;
    }
    .text-container {
        max-width: 100%;
    }
    .logo {
        margin-bottom: 24px;
    }
    .check-item {
        align-items: flex-start;
    }
}