.auth-text {
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    color: var(--color-main-dark) !important;
    text-align: center;
    font-weight: bold;
}

.auth-btn {
    background-color: var(--color-blue-light);
    border-radius: 100px;
    color: var(--color-white);
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    text-decoration: none;
    padding: 20px 50px;
}

.auth-loader {
    background-color: rgba(255, 255, 255, .8) !important;
}

.head-content {
    width: clamp(200px, 100%, 1152px);
    margin: 0 auto;
}

.head-data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    align-content: stretch;
}

.head-title {
    font-size: clamp(1.5rem, -0.1026rem + 5.698vw, 4rem);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    margin: 100px 0 20px 0;
}

.head-info {
    font-size: clamp(0.875rem, 0.5545rem + 1.1396vw, 1.375rem);
    color: var(--color-white);
    margin: 20px 80px 0 0;
}

.head-btn {
    background-color: var(--color-blue-light);
    border-radius: 100px;
    width: 350px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
}

.head-btn-text {
    font-size: clamp(1rem, 0.5192rem + 1.7094vw, 1.75rem);
    font-style: italic;
    font-weight: bold;
    color: var(--color-white);
    text-align: right;
}

.head-btn-arrow {
    padding: 10px 10px 10px 20px;
}

.head-btn-arrow > img {
    display: block;
}

.head-image {
    display: block;
    width: 100%;
    padding-top: 50px;
}

.head-image-m {
    display: none;
}

@media (width < 1200px) {
    .head-data {
        flex-direction: column;
        align-items: flex-start;
    }

    .head-data > div {
        width: 100%;
    }

    .head-btn {
        border-radius: 100px;
        width: clamp(100px, 65%, 250px);
        margin: 30px 0 0 20px;
        justify-content: space-between;
    }

    .head-btn > div:first-child {
        margin-left: 30px;
    }

    .head-btn-text {
        text-align: center;
    }

    .head-btn-arrow {
        padding: 10px 10px 10px 10px;
    }

    .head-btn-arrow > img {
        width: 30px;
        height: 30px;
    }

    .head-image {
        border-radius: 0 0 20px 20px;
    }

    .head-title {
        margin: 20px 20px 15px 20px;
    }
    
    .head-info {
        margin: 15px 20px 0 20px;
    }
}

@media (width < 800px) {
    .head-image {
        display: none;
    }
    
    .head-image-m {
        display: block;
        width: 100%;
        padding-top: 30px;
        border-radius: 0 0 20px 20px;
    }
}
