body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.register-page {
    flex-grow: 1;
    align-content: center;
}

.register-page__wrapper {
    padding: 50px 0;
}

.auth-header {
    background-color: #3b3b3b;
    padding: 25px 0;
}

.auth-header__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.auth-header__wrapper__phone > a {
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    justify-self: end;
}

.auth-header__wrapper__phone > a > i {
    margin-right: 10px;
    color: #d71637;
}

.auth-header__wrapper__logo > a > img {
    width: 240px;
    height: auto;
}

.auth-header__wrapper__continue-shopping > a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.auth-header__wrapper__logo {
    justify-self: center;
}

#registerForm {
    padding: 50px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, .2);
    max-width: 480px;
    margin: 0 auto;
}

#registerForm .form-title {
    font-size: 21px;
    font-weight: 600;
    color: #464646;
    text-align: center;
}

#registerForm .form-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    text-align: center;
}

#registerForm .form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#registerForm .form-input {
    position: relative;
}

#registerForm .form-fields .form-input.center {
    justify-self: center;
}

#registerForm .form-fields .form-input.center.full {
    /*grid-column: span 2;*/
}

#registerForm .form-input input {
    height: 40px;
    border: 1px solid #ebebeb;
    width: 100%;
    padding: 0 15px;
    outline: none;
}

#registerForm .form-subtitle > a {
    color: #d71637;
    text-decoration: underline;
}

#registerForm .form-input button[type='submit'] {
    width: 180px;
    height: 40px;
    border: 1px solid #363636;
    color: #363636;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    background: #fff;
    margin: 0 auto;
}

#registerForm .form-input button[type='submit']:hover {
    background-color: #d71637;
    color: #fff;
    border-color: #d71637;
}

#registerForm span.error-message {
    font-size: 12px;
    color: red;
}

#registerForm a {
    color: #ef183d;
}

#registerForm .error-alert {
    padding: 10px;
    border: 0;
    background-color: #ff8383;
    margin-bottom: 10px;
    color: #363636;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#registerForm .error-alert > i {
    font-size: 18px;
    color: #c30000;
}

#registerForm .company-details:not(.active) {
    display: none;
}

#registerForm .company-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}