.exo-2-light {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.exo-2-normal {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.exo-2-bold {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
}

h1,
h2 {
    margin-bottom: 10px;
    line-height: 1.2;
    color: #000;
}

input,
select,
textarea {
    font-family: inherit;
}

.main {
    padding: 0 20px;
}

.main-header {
    padding-bottom: 60px;
    text-align: center;
}

.main-subtitle {
    padding: 0 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    padding: 60px 0;
    border-top: 3px double #e5e5e5;
}

.form-subtitle {
    font-size: 14px;
    color: #333;
}

.form-inline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.form-inline-last {
    margin-top: 0;
    align-items: center;
    justify-content: center;
}

.form-control {
    flex: 1;
}

.form-label {
    display: inline-flex;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1;
    color: #666;
}

.form-required {
    line-height: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #ff0000;
}

.form-input {
    display: block;
    width: 100%;
    padding: 10px 16px;
    line-height: 1.25;
    font-size: 16px;
    background: #fff;
    border: 1px solid #d5d5d5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-appearance: none;
}
.form-input.error {
    border-color: #ff0000;
}
.form-input-error-text {
    font-size: 12px;
    color: #ff0000;
}

.form-select {
    overflow: hidden;
    overflow: -moz-hidden-unscrollable;
    background: #fff url(../img/angle-down.svg) no-repeat right center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-text {
    min-height: 160px;
}

.form-button {
    display: inline-block;
    padding: 14px 28px;
    line-height: 1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #bbf451;
    color: #032e15;
    background: #bbf451;
    cursor: pointer;
}

.form-button:hover {
    border-color: #a4dd3b;
    background: #a4dd3b;
}

.backlink {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 0;
    color: #84b726;
    background: transparent;
    cursor: pointer;
}

.backlink-img {
    width: 24px;
    height: 24px;
}

.backlink:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: #84b726;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.backlink:hover::after {
    transform: scaleX(1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header {
    padding: 30px 20px 60px;
}

.logo {
    max-width: 150px;
    line-height: 1;
}

.logo-img {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    background: #f9f9f9;
}

.copyright {
    font-size: 14px;
    color: #000;
}

.success-message {
    padding: 40px;
    border-radius: 4px;
    background: #f9faff;
    text-align: center;
    font-size: 18px;
}
.success-message-icon {
    width: 60px;
    height: 60px;
}
.success-message-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.success-message-text {
    margin: 10px 0 20px;
    font-size: 18px;
    font-weight: 300;
}
.success-message-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 480px) {
    .form-section {
        padding: 30px 0;
    }

    .form-inline {
        flex-direction: column;
        margin-top: 30px;
    }

    .main-subtitle {
        padding: 0;
    }
}
