body {
	margin: 0;
	padding: 0;
} 
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#wrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	font-family:'HelveticaNeue','Arial', sans-serif;
}
#banner-content{
	width: 100%;
	height: 100%
}
#content-animation{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
a{color:#58bff6;text-decoration: none;}
a:hover{color:#aaa; }
.pull-right{float: right;}
.pull-left{float: left;}
.clear-fix{clear:both;}
div.logo{
    width: 50%;
    height: auto;
	text-align: center;
    margin: 15px auto;
}
div.logo svg{
	width:180px;
	height:100px;
}
.logo-active{fill: #44aacc !important;}
#formWrapper{
	background: url(../images/background.jpg) no-repeat; 
	background-size: cover;
	width:100%; 
	height:100%; 
	position: absolute; 
	top:0; 
	left:0;
	display: flex;
    justify-content: center;
    align-items: center;
}
.darken-bg{background: rgba(0,0,0,.5) !important; transition:all .3s ease;}
form#form{
	position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fff;
    border-radius: 16px;
}
div.form-item{position: relative; display: block; margin-bottom: 20px;}
 input{transition: all .2s ease;}
 input.form-style{
	color:#8a8a8a;
	display: block;
	width: 90%;
	height: 44px;
	border:1px solid #ccc;
	-moz-border-radius: 27px;
	-webkit-border-radius: 27px;
	border-radius: 27px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #fff;
	font-family:'HelveticaNeue','Arial', sans-serif;
	font-size: 105%;
	letter-spacing: .8px;
	margin: 0 auto;
	padding-left: 15px;
}
div.form-item .form-style:focus{outline: none; border:1px solid #3DDB4C; color:black; }
div.form-item p.formLabel {
	position: absolute;
    left: 26px;
    top: 0px;
    transition: all .4s ease;
    color: #bbb;
    margin-top: 12px;
	pointer-events: none;
}
.formTop{top:-22px !important; left:26px; background-color: #fff; padding:0 5px; font-size: 14px; color:#3DDB4C !important;}
.formStatus{color:#8a8a8a !important;}
input[type="submit"].login{
	width: 200px;
	height: 50px;
	-moz-border-radius: 19px;
	-webkit-border-radius: 19px;
	border-radius: 19px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #2DA038;
	border:1px solid #55b1df;
	border:none;
	color: #fff;
	font-weight: bold;
}
input[type="submit"].login:hover{background-color: #fff; border:1px solid #3ddb4c; color:#3ddb4c; cursor:pointer;}
input[type="submit"].login:focus{outline: none;}

#otp-wrapper{
	position: absolute;
    width: 360px;
    height: 320px;
    border-radius: 5px;
	transform: scale(0);
	pointer-events: none;
}
.container {
	background-color: #fff;
    padding: 15px 0px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* max-width: 400px; */
    width: 100%;
}
h1 {
	margin-bottom: 1.5rem;
	color: #2DA038;
	font-weight: 600;
	font-size: 2rem;
}
p {
	margin-bottom: 2rem;
	color: #b0b0b0;
	font-weight: 300;
}
.otp-input {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.otp-input input {
	width: 50px;
	height: 50px;
	margin: 0 8px;
	text-align: center;
	font-size: 1.5rem;
	border: 2px solid #3DDB4C;
	border-radius: 12px;
	background-color: rgba(42, 42, 42, 0.2);
	color: #ffffff;
	transition: all 0.3s ease;
}
.otp-input input:focus {
	border-color: #F5CB36;
	box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
	outline: none;
}
.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.otp-input input[type=number] {
	-moz-appearance: textfield;
}
.otp-input input:disabled{
	border: 2px solid #b0b0b0;
}
button {
	background: #2DA038;
	color: white;
	border:1px solid #3ddb4c;
	padding: 12px 24px;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	margin: 5px;
	transition: all 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.5px;
}
button:hover {
	background: #fff;
	color: #3ddb4c;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(166, 86, 246, 0.3);
}
button:disabled {
	background: #cccccc;
	border-color: #999999;
	color: #666666;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.expired {
	color: red !important;
}
#timer {
	font-size: 14px;
	color: #A556F6;
	font-weight: 500;
}
@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}
.resend-text {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #b0b0b0;
}
.resend-link {
	color: #b0b0b0;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease;
	pointer-events: none;
}
.resend-link:hover {
	color: #A556F6;
	text-decoration: underline;
}
#telegram {
	color: #2DA038;
	font-weight: 500;
}
.disable{
	display: none;
}
.pullcenter{
	text-align: center;
}
#form img{
	max-width: 100%;
	height: auto;
}