html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    z-index: 1;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    overflow: hidden;
    background: #000;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/** Start of font family **/
@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-ExtraBold';
    src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf') format('truetype');
}

.splash-screen {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: absolute;
    background: url("../images/splash-screen.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.loader {
    width: 1920px;
    height: 1080px;
    position: absolute;
    display: none;
    z-index: 9;
    text-align: center;
}

.circle_loader {
    width: 145px;
    height: 145px;
    background: url(../images/loader.png) no-repeat;
    background-size: cover;
    -moz-animation: spin 5s infinite linear;
    -webkit-animation: spin 5s infinite linear;
    margin: 0 auto;
    top: 45%;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ==================================== Start of log-in screen=========================== */
.main_container {
    width: 1920px;
    height: 1080px;
    position: fixed;
    text-align: center;
    left: 0;
    top: 0;
}

.login_container {
    top: 226px;
    display: grid;
    position: relative;
}

.logo_container {
    position: relative;
}

.login_with_container,
.signup_container {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
}

.login_with_emial_phone {
    text-align: center;
    color: #FFFFFF;
}

.login_txt {
    position: relative;
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
}

.login_input {
    position: relative;
    width: 747px;
    height: 75px;
    margin: 30px 0px;
    color: #FFFFFF;
    font-size: 40px;
    background: rgba(117, 116, 156, 0.6);
}

.login_input::placeholder {
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
}

.btn_next {
    width: 100%;
    position: relative;
    text-align: center;
}

.next_txt {
    position: relative;
    width: 219px;
    margin: 0 auto;
    background: #FFFFFF;
    color: #000;
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    align-items: center;
    text-align: center;
}

.next_txt span {
    padding: 10px;
}

.next_txt img {
    top: 3px;
    position: relative;
}

.or_txt {
    position: relative;
    width: 100%;
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    margin: 20px 0px;
    color: #FFFFFF;
}

.btn_logincode {
    position: relative;
    width: 336px;
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    align-items: center;
    text-align: center;
    color: #181818;
    margin: 0 auto;
    background-color: #000000;
}




.signup_container {
    display: none;
}

.login-logo-box img {
    width: 260px;
    height: 200px;
}

.screen-name {
    padding: 6px;
    text-align: center;
}

.screen-name span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}


.form-input {
    width: 697px;
    height: 88px;
    font-family: "Poppins-Light";
    font-size: 30px;
    color: #000000;
    padding-left: 46px;
    border: 2px solid #8080807d;
}

.signup_container .form-input {
    margin: 0 15px;
}

.login-btn {
    width: 743px;
    height: 88px;
    font-size: 36px;
    background: red;
    font-family: "Poppins-Bold";
    color: #ffffff;
}

.sign-up {
    width: 743px;
    height: 88px;
    font-size: 36px;
    background: blue;
    font-family: "Poppins-Bold";
    color: #ffffff;
}

.form-boxs {
    color: aliceblue;
}

.signin-button-box {
    padding-top: 30px;
}

.signup-button-box {
    padding-top: 40px;
}

.form-box {
    padding-top: 30px;
}

::placeholder {
    color: #8080807d;
}

input:focus {
    border: 2px solid #FE0404;
}

button:focus {
    background: #FE0404;
    border: 2px solid #FE0404;
}

/* ====================================End of log-in screen=========================== */

/* ====================================Start of error message=========================== */
.error_container {
    display: none;
    position: relative;
    top: 110px;
    color: #ff0000;
    font-size: 30px;
    text-align: center;
}
.error-box {
    display: none;
    position: relative;
    top: 22px;
    color: #ff0000;
    font-size: 22px;
    text-align: center;
  }
  
  .error-box-forgot {
    display: none;
    position: relative;
    top: 22px;
    color: #ff0000;
    font-size: 22px;
  }
/* ====================================End of error message=========================== */