@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(/fonts/poppins-regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/poppins-bold.woff2) format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    color: #333244;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8em;
}

.container {
    min-height: 100%;
    padding: 90px 0;
    background-color: #f0f0f0;
}

h1 {
    margin-bottom: 32px;
}

h2 {
    margin-bottom: 16px;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

header {
    width: 700px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.block {
    width: 700px;
    margin: 0 auto;
    margin-bottom: 32px;
    padding: 32px;
    border-radius: 8px;
    background-color: white;
    position: relative;
}

.block img {
    margin-top: 15px;
}

.block hr {
    border: none;
    border-top: 1px dashed #f0f0f0;
    margin-bottom: 32px;
}

.description {
    display: block;
    margin: 16px 0;
}

.button {
    display: inline-flex;
    color: white;
    background: #0B5504;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6em;
    letter-spacing: 0px;
    padding: 12px 27px;
    border-radius: 112px;
    text-decoration: none;
    position: relative;
    border: none;
    cursor: pointer;
}

.button:disabled {
    opacity: 0.2;
    cursor: default;
}

.button > svg {
    margin-left: 16px;
}

.arrow {
    display: block;
    width: auto;
    height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-100%, -50%);
}

.browser-image {
    display: block;
    width: 100%;
}

.url {
    display: block;
    white-space: nowrap;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-field:not(:last-of-type) {
    margin-bottom: 32px;
}

.form-field label {
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
}

.form-field select {
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.form-field input {
    width: 100%;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.form-field textarea {
    width: 100%;
}

footer img {
    display: block;
    margin: 0 auto;
}