@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;
}

.forgot-pwd-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;
}

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

.forgot-pwd-pos .forgot-pwd .logo {
    width: 100%;
    margin: 30px 0 0 0;
}

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

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

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

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

.forgot-pwd-pos .forgot-pwd form .email {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.forgot-pwd-pos .forgot-pwd form .button {
    display: flex;
    width: 244px;
    height: 38px;
    margin: 70px 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-items: center;
    user-select: none;
    -webkit-user-select: none;
}

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

.forgot-pwd-pos .forgot-pwd form .links {
    display: flex;
    flex-direction: column;
    margin: 30px 0 0 0;
    text-align: center;
    justify-content: center;
}

.forgot-pwd-pos .forgot-pwd form .links a {
    font-size: 0.9375rem;
    color: #2E50A2;
}

.forgot-pwd-pos .forgot-pwd form .links a:visited {
    color: #2E50A2;
}

.forgot-pwd-pos .forgot-pwd form .links .register {
    margin: 10px 0 0 0;
}

.forgot-pwd-pos .email-sent {
    padding: 50px;
    background: #FFF;
    border-radius: 30px;
}

.forgot-pwd-pos .email-sent p {
    font-family: var(--italic-font);
    font-size: 2rem;
    color: #2B3990;
}
