@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&display=swap');

html, body {
    height: 100%;
    font-size: 14px;
}

body {
    background-color: #f5f5f5;
    font-family: "Manrope", sans-serif;
    line-height: 1.3rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant: none;
}

.primary_text {
    color: #F9681E;
}

.text-underline, .text-underline:hover {
    text-decoration: underline;
}

hr.primary {
    background-color: #0A0A0A;
    opacity: 0.1;
    border: none;
    margin: 1.5rem 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

header.header {
    height: 72px;
    background-color: #ffffff;
    margin-bottom: 10px;
}

.header__menu .dropdown {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(10, 10, 10, 0.1);
}

.dropdown__button {
    display: flex;
    align-items: center;
}

.dropdown__button:after {
    content: none;
}

.circle-user {
    background: rgba(10, 10, 10, 0.1);
    border-radius: 50%;
    color: #fff;
    height: 2.2rem;
    width: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem
}

.circle-user__icon {
    width: 14px;
    height: 14px;
}

main.main {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Block */
.block {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.block__top {
    margin-bottom: 20px;
}

.block__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    font-style: normal;
}

.block__content {
    background: #FFFFFF;
    padding: 30px;
    box-shadow: 0 5px 24px -10px rgba(10, 10, 10, 0.1);
    border-radius: 15px;
    width: 450px;
    margin-bottom: 30px;
}

.block__content form label {
    display: block;
    font-weight: 500;
    padding-bottom: 0.7rem;
}

.block__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block__footer span,
.block__footer p {
    color: #848484;
}

.block__footer a, .block__footer a:hover, .block__footer a:focus {
    color: #F9681E;
    opacity: 1;
}

.block__button {
    padding: 0.8rem;
}


/* Modal overrides */
.popup .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000000;
}

.popup .modal-content {
    width: 650px;
    height: 365px;
    border-radius: 15px;
}

.popup .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup .modal-body {
    width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;

}

.popup .modal_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    color: #0A0A0A;
}

.popup .modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup .modal-footer button.btn-dark {
    background-color: #0A0A0A;
}

.modal-header, .modal-footer {
    border: none;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-buttons .contact-button-wrapper {
    display: flex;
    flex: 1 1 45%;
}

.contact-buttons .contact-button {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    font-size: 1.1rem;
    padding-left: 0.5rem;
}

.contact-button svg {
    margin-right: 13px;
}


.button_active {
    background: #F9681E;
}

.button_disabled, .btn-primary:disabled {
    background-color: #FB9562;
    border-color: #FB9562;
    opacity: 1;
}

/* Shared Form styles */

.form-fields {
    display: flex;
    flex-direction: column;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.43rem;
}

.form-field:last-child {
    margin-bottom: 0;
}

.form-validation {
    display: flex;
    flex-direction: column;
}

.form-validation .text-success,
.form-validation .text-danger {
    margin-top: 10px;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
}

.registration-form__container {
    display: flex;
    flex-direction: column;
}

.service-terms a {
    text-decoration: underline;
}

.captcha {
    display: flex;
    flex-direction: column;
}

.captcha__field {
    display: flex;
}

.captcha__field input[type='text'] {
    order: 2;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 20px;
    background: #F5F5F5;
    border-radius: 10px;
    border: none;
    margin-left: 1rem;
}

.captcha__field .captcha {
    order: 1;
}

.captcha__field button[type='button'] {
    order: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #B6B6B6;
    border-radius: 10px;
}

.captcha__field button svg {
    fill: #bbbbbb;
    width: 18px;
    height: 18px;
    transition: fill .15s
}

.captcha__field button:hover {
    border-color: rgba(249, 104, 30, 0.5);;
}

.captcha__field button:hover svg {
    fill: #F9681E;
}

/* Application Form */
.application-form {
    display: flex;
    flex-direction: column;
}

.application-form__subtitle {
    margin-bottom: 1.3rem;
}

.application-form__text {
    font-size: 1rem;
    color: #0A0A0A;
    opacity: 0.5;
}


/* Application Status */
.application-info {
    display: flex;
    flex-direction: column;
}

.application-info__subtitle {
    color: rgba(10, 10, 10, 0.5);
}

.application-info__subtitle a, .application-info__subtitle a:hover {
    color: #F9681E;
    text-decoration: underline;
}

.application-info__help {
    opacity: 1;
    color: rgba(10, 10, 10, 0.5);
}

.application-info__success {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    background: rgba(80, 150, 62, 0.07);
    border-radius: 3px
}

/* Reset Form */
.password-form {
    display: flex;
    flex-direction: column;
}

.input_success, .input_success:focus, .input_success:active {
    border: 1px solid #50963E;
}

.input_error, .input_error:focus, .input_error:active {
    border: 1px solid rgba(224, 7, 7, 0.7);
}

.user-profile {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0 10px 0 20px;
}

.user-profile[aria-expanded="true"] > .fa {
    transform: rotate(180deg);
}

.user-profile img {
    width: 17px;
    height: 17px;
    border-radius: 50%;
}

.user-profile .fa {
    position: relative;
    top: 0.1rem;
}

.profile-circle-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.1);
    margin-right: 11px;
}

.user-profile-dropdown-menu {
    width: 180px;
    padding: 0;
    border: 1px solid #D9DEE4;
    border-radius: 5px 5px 5px 5px;
}

.user-profile-dropdown-menu > li > a {
    width: 100%;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 13px;
}

.user-profile-dropdown-menu > li > a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}
