@font-face {
    font-family: "Sansation";
    src: url("../../fonts/sansation/Sansation_Regular.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sansation Italic";
    src: url("../../fonts/sansation/Sansation_Italic.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sansation Bold";
    src: url("../../fonts/sansation/Sansation_Bold.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sansation Bold Italic";
    src: url("../../fonts/sansation/Sansation_Bold_Italic.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sansation Light";
    src: url("../../fonts/sansation/Sansation_Light.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sansation Light Italic";
    src: url("../../fonts/sansation/Sansation_Light_Italic.ttf") format("truetype"), url("../../fonts/sansation/Sansation_plate.jpg") format("jpg");
    font-weight: normal;
    font-style: normal;
}

:root {
    --fallback-font: Arial;
    --regular-font: "Sansation", var(--fallback-font);
    --italic-font: "Sansation Italic", var(--fallback-font);
    --bold-font: "Sansation Bold", var(--fallback-font);
    --bold-italic-font: "Sansation Bold Italic", var(--fallback-font);
    --light-font: "Sansation Light", var(--fallback-font);
    --light-italic-font: "Sansation Light Italic", var(--fallback-font);
}

body {
    height: 100vh;
    margin: 0;
    font-family: var(--regular-font);
}

h2,
p {
    margin: 0;
}

.register-pos {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(46, 93, 169, 0.97) 0%, rgba(42, 161, 217, 0.97) 100%);
    justify-content: center;
    align-items: center;
}

.register-pos .register {
    position: relative;
    width: 90%;
    max-width: 712px;
    height: 90%;
    max-height: 710px;
    background-color: #fff;
    border-radius: 20px;
}

.register-pos .register .cloud-icon {
    position: absolute;
    top: 129px;
    left: 0;
}

.register-pos .register .logo {
    width: 100%;
    margin: 28px 0 0 0;
}

.register-pos .register h2 {
    position: relative;
    margin: 28px 0 0 0;
    color: #2B3990;
    text-align: center;
}

.register-pos .register form {
    height: calc(100% - 248px);
    position: relative;
    margin: 0 10.7%;
    overflow-y: auto;
    scrollbar-color: #24A0DA #E3E3E3;
    scrollbar-width: thin;
}

.register-pos .register form::-webkit-scrollbar {
    width: 6px;
    background-color: #E3E3E3;
}

.register-pos .register form::-webkit-scrollbar-thumb {
    background-color: #24A0DA;
}

.register-pos .register form #email-913 {
    display: none;
}

.register-pos .register form div {
    display: flex;
    margin: 20px 0 0 0;
    justify-content: space-between;
    align-items: center;
}

.register-pos .register form .email {
    margin-top: 30px 0 0 0;
}

.register-pos .register form label {
    font-size: 1.25rem;
    color: #2B3990;
}

.register-pos .register form .password label .sub-label {
    font-size: 0.875rem;
}

.register-pos .register form input {
    width: 58.4%;
    height: 30px;
    padding: 0 20px;
    color: #3B5D6D;
    background-color: #F4F5F5;
    border: none;
    border-radius: 30px;
}

.register-pos .register form input:-webkit-autofill {
    -webkit-text-fill-color: #3B5D6D;
    -webkit-box-shadow: 0 0 0 30px #F4F5F5 inset;
}

.register-pos .register form .password #password,
.register-pos .register form .confirm-password #confirm-password {
    width: 44%;
}

.register-pos .register form .button {
    width: 194px;
    height: 38px;
    margin: 50px auto 0 auto;
    color: #FFF;
    background-color: #249DD7;
    border: solid #249DD7 2px;
    border-radius: 30px;
    transition: all 0.3s;
    cursor: pointer;
    justify-content: center;
    align-content: center;
    user-select: none;
    -webkit-user-select: none;
}

.register-pos .register form .button:hover {
    color: #249DD7;
    background-color: #FFF;
}

.register-pos .register form .links {
    margin-top: 28px;
    font-size: 0.9375rem;
    justify-content: center;
}

.register-pos .register form .links .login {
    color: #2E50A2;
}

.register-pos .register form .links .login:visited {
    color: #2E50A2;
}
