* {
    box-sizing: border-box;
    font-family: 'Roboto', 'Open Sans', sans-serif;
}

a {
    cursor: pointer;
}

body {
    background-color: #f6f9fc;
    text-rendering: optimizeLegibility;
    font-feature-settings: "pnum";
    font-variant-numeric: proportional-nums;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 60px 0;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 36px;
    width: 250px;
}

p, h1 {
    margin: 0;
    padding: 0;
}

.form-title {
    color: #32325d;
}

.title {
    color: #32325d;
    letter-spacing: -.01em;
    font-weight: 300;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
}

.description {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #525f7f;
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
    text-align: center;
}

.example {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 588px;
    background-color: #fff;
    box-shadow: 0 0 15px -6px rgba(0,0,0,0.75);
    border-radius: 10px;
    padding: 20px 0;
}

.example3 {
    background-color: #ead1a2;
}

.example4 {
    background-color: #e1e2e1;
}

.example5 {
    flex-direction: column;
    background-color: #e3e4d1;
}

.example5-form {
    width: 500px;
}

.example5--submit {
    width: 100%;
    margin-top: 16px;
    height: 34px;
    border-radius: 10px;
    outline: 0;
    color: #008b8b;
    border: 1px solid #008b8b;
    cursor: pointer;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-group:not(:first-child) {
    margin-top: 6px;
}

.field-group label {
    font-size: 14px;
    margin-bottom: 4px;
}

.field-group input {
    height: 30px;
    border-radius: 10px;
    border: 1px solid #0c5460;
    outline: 0;
    padding: 0 10px;
}

.token-example {
    margin-top: 16px;
    padding: 10px 16px;
    border: 1px solid #fafafa;
    border-radius: 10px;
}

.container--information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.information {
    color: #cfd7df;
}

.source {
    text-decoration: none;
    color: #cfd7df;
    transition: .2s ease-in-out;
}

.source span {
    margin-left: 6px;
    color: #AAB7C4;
    display: inline-block;
    transform: translateY(1px);
}

.source * {
    transition: .2s ease-in-out;
}

.source:hover, .source:hover path, .source:hover span {
    color: #32325d;
    fill: #32325d;
}