.register-form {
    position: relative;
    padding: 24px 0;
    margin-top: 22px;
    background-color: transparent;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.register-form .form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 2px;
}

.register-form .form-group label sup {
    font-size: 14px;
    color: #333333;
    top: 0;
}

.register-form .form-group .form-control {
    position: relative;
    border: 1px solid #d5d5d1;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    background-color: #ffffff;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    color: #333333;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
    padding: 0 10px !important;
}

.register-form .form-group .form-control:focus {
    border-color: #46618e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.register-form select:not([multiple]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 50%;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="12" version="1"><path d="M4 8L0 4h8z"/></svg>');
    padding: .5em;
    padding-right: 1.5em
}

.register-form .form-checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 15px;
}

.register-form .form-checkbox input {
    margin-right: 10px;
}

.register-form .form-checkbox label {
    font-size: 12px;
}

.register-form .text-group {
    position: relative;
    margin-bottom: 15px;
}

.register-form .text-group p,
.register-form .text-group p strong {
    color: #333333;
    font-size: 12px;
    font-family: inherit;
}

.register-form .text-group p {
    font-weight: 400;
}

.register-form .text-group p strong {
    font-weight: 600;
}

.register-form .text-group a {
    color: #333333;
    font-size: 12px;
    text-decoration: underline;
    transition: all .2s;
}

.register-form .text-group a:hover {
    color: #E51980;
}

.register-form .register-form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    margin-top: 15px;
}

.register-form button.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 35.5px;
    border: 0;
    min-width: 180px;
    background-color: #cad940;
    transition: all .3s;
}

.register-form button.btn-register:hover {
    background-color: #dce67f;
}

.register-form button.btn-register:hover .icon-box > i {
    color: #cad940;
}

.register-form button.btn-register .btn-text {
    flex: 1;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    text-align: left;
    margin-left: 25%;
    line-height: 1;
}

.register-form button.btn-register .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 40px;
    background-color: #344a73;
    position: absolute;
    right: 0;
    color: #ffffff;
}

.register-form button.btn-register .icon-box i {
    font-size: 18px;
    transition: all .2s;
}