* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif !important;
    font-size: 16px;
}

.container {
    height: 100%;
}

.outer-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.inner-content {
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 1em;
    margin: 0;
}

.down {
    display: flex;
    justify-content: center;
}

#title {
    margin-bottom: 4px;
    margin-top: 4px;
}

.heading1 {
    font-size: 28px;
}

.heading2 {
    margin-top: 2em;
    font-size: 24px;
}

.title {
    font-size: 28px;
    text-align: center;
}

div.title {
    margin-bottom: 28px;
}

.teacher-student {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
}

.type {
    font-size: 28px;
    color: #ff6300;
    display: inline;
}

svg {
    vertical-align: middle;
    height: 32px;
    margin-bottom: 2px;
    fill: #ff6300;
}

a {
    text-decoration: none !important;
    color: #ff6300 !important;
}

a:hover {
    color: #ff954b !important;
}

.displayNone {
    display: none !important;
}

.agree p {
    margin-bottom: 0;
}

.agree, .send_request {
    margin: 1em 0;
}

.colorGray {
    color: #6c747c !important;
}

.colorBlack {
    color: #212529 !important;
}

.displayInline {
    display: inline !important;
}

.displayFlex {
    display: flex !important;
}

.next {
    font-weight: bold;
}

.send-request {
    margin-bottom: 32px;
}

.contacts {
    position: absolute;
    bottom: 1em;
}

.contacts p {
    margin-bottom: 0;
}

.contacts a {
    color: #3a68ff !important;
}

.contacts a:hover {
    color: #7696ff !important;
}

.small {
    font-size: 20px;
}

select:hover {
    cursor: pointer;
}

select option:hover {
    cursor: pointer;
}

p.captcha {
    justify-content: space-between;
}

p.captcha input {
    width: 85%;
}

h4.processing {
    margin-bottom: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-left: 3px solid #3a68ff;
    border-right: 3px solid #3a68ff;
    border-bottom: 3px solid #3a68ff;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modal-body {
    text-align: center;
}

.modal-body-spinner {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}


