@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
    border: 0;
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    background: #fff;
}

body {
    min-height: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #212b36;
}

button {
    display: inline-block;
    padding: 1em 1.8125em;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.133;
    -webkit-font-smoothing: antialiased;
    transition: 150ms ease;
    transition-property: background-color, border-color, box-shadow, color;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    background-color: #213fd4;
    color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    margin: 1.5rem 0;
}

button:hover,
button:focus {
    background-color: #213fd4;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.25);
}

button:focus {
    box-shadow: 0 0 0.1875em 0.1875em #213fd4;
    text-decoration: none;
    outline: 0;
}

a {
    color: #479ccf;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "EB Garamond", serif;
    text-align: left;
    margin: 0 0 1rem 0;
    color: #31373d;
    font-weight: 700;
}

h1 {
    font-size: 42px;
    line-height: 44px;
    font-weight: 500;
}

h2 {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 30px;
}

h3 {
    font-size: 17px;
    line-height: 30px;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 22px;
    font-weight: 400;
}

h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 76px;
    background: #eaeaea;
}

h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

img {
    max-width: 100%;
}

.logo {
    width: 117px;
    height: 34px;
}

li {
    margin-bottom: 5px;
}

.wrapper {
    box-sizing: border-box;
    max-width: calc(410px + 4rem);
    min-height: calc(100vh - 5rem);
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 20vh;
    padding-bottom: 6rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: -8px -8px 0 -8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.form-wrapper {
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.label-wrapper {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -4px;
}

.label-wrapper label {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 0.4rem;
}

.label-wrapper > * {
    margin: 0 4px 4px 4px;
}

.description {
    color: #6c6c6c;
}

.form-input {
    outline: none;
    max-height: 5.2rem;
    padding: 1.6rem;
    border-color: #8996a3;
    box-shadow: 0 0 0 0.1rem transparent;
    min-width: 75px;
    height: auto;
    margin: 0;
    border: 1px solid #c4cdd5;
    border-radius: 3px;
    text-transform: initial;
    letter-spacing: initial;
    box-sizing: border-box;
    display: block;
    width: 100%;
    transition: box-shadow 100ms cubic-bezier(0.64, 0, 0.35, 1),
        border-color 100ms cubic-bezier(0.64, 0, 0.35, 1),
        -webkit-box-shadow 100ms cubic-bezier(0.64, 0, 0.35, 1);
}

.form-input:focus {
    border-color: #213fd4;
    box-shadow: 0 0 0 0.1rem #213fd4;
    border: 1px solid #213fd4;
    margin-bottom: -0.1px;
}

.form-input.with-error {
    background-color: #fbeae5;
    border-color: #bf0711;
}

.form-input.with-error:focus {
    border: 1px solid #98050d;
    box-shadow: 0 0 0 0.1rem transparent;
}

.error-icon {
    align-self: start;
    -webkit-align-self: flex-start;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    fill: #de3618;
    font-size: 1.5rem;
}

.error-message {
    color: #bf0711;
    font-size: 1.5rem;
}

.error-container {
    margin-top: 0.8rem;
}

.hero {
    margin-bottom: 30px;
    width: 200px;
}

.content--block {
    position: relative;
    margin-bottom: 32px;
}

.notification {
    display: inline-flex;
}
.rwa-custom-logo {
    display: block;
    max-width: 100px;
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.rwa-notice {
    display: block;
    background-color: #eff2ff;
    padding: 10px;
    border-radius: 5px;
    color: #000;
    text-align: center;
}

@media all and (min-width: 500px) {
    .ico svg {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }

    .hero {
        margin-bottom: 70px;
    }
}

@media (max-height: 1024px) and (max-width: 600px) {
    .wrapper {
        padding-top: 2rem;
    }
}
