:root {
    --Grey-Primary: #3d3d3d;
    --Grey-Tint-2: #bababa;
    --Grey-Tint-3: #f0f0f0;
    --Green-Primary: #14a800;
}

body {
    font-family:
        Work Sans,
        "sans-serif";
    color: #3d3d3d;
}

.bolder {
    font-weight: bolder;
}

.normal {
    font-weight: normal;
}

.align-right {
    float: right;
}

.auth-container,
.form-section,
.info-container {
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

.auth-form,
.form-container {
    border-radius: 8px;
    border: 2px solid var(--Grey-Tint-3);
    display: flex;
    width: 100%;
    max-width: 550px;
    flex-direction: column;
    padding: 40px;
}

.logo {
    aspect-ratio: 1.88;
    object-fit: contain;
    object-position: center;
    width: 124px;
    align-self: center;
    max-width: 100%;
}

.form-group,
.input-wrapper {
    display: flex;
    margin-top: 24px;
    width: 100%;
    flex-direction: column;
    position: relative;
}

.form-label,
.input-label {
    color: var(--Grey-Primary);
    line-height: 1.4;
}

.form-input,
.form-input {
    border-radius: 8px;
    background: #fff;
    margin-top: 8px;
    line-height: 1;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    flex-grow: 1;
}

.submit-button {
    border-radius: 40px;
    margin-top: 24px;
    width: 100%;
    font-size: 16px;
    background: var(--color-bg, --Green-Primary);
    color: var(--color-font-primary, #fff);
    font-weight: 600;
    text-align: center;
    line-height: 2;
    padding: 8px 50px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.submit-button:disabled {
    background: var(--Grey-Tint-2);
    cursor: default;
}

.secondary-button {
    border: solid 1px var(--Green-Primary);
    background: none;
    color: var(--Green-Primary);
}

.secondary-button > img,
.secondary-button > span {
    vertical-align: middle;
}

.apply-button {
    border-radius: 40px;
    background: var(--Green-Primary);
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 8px 26px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.apply-button:disabled {
    background: var(--Grey-Tint-2);
    cursor: default;
}

.section-title {
    color: var(--Grey-Primary);
    font:
        600 32px/1 Work Sans,
        sans-serif;
}

#error-message {
    color: red;
    margin-top: 10px;
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 991px) {
    .auth-container,
    .form-section {
        padding: 100px 20px;
    }

    .auth-form,
    .form-container {
        padding: 20px;
    }

    .submit-button {
        padding: 0 20px;
    }
}

.hidden {
    display: none;
}

.dropdown-list li:hover {
    background: #f0f0f0;
}

.is-valid {
    border-color: var(--Green-Primary);
}

.crossed {
    text-decoration: line-through;
}

.bigger {
    font-size: 20px;
}
