



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}


body{

background:#050505;
color:white;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
overflow-x:none;

}

.logo img{
height:35px;
}
.container{
width:360px;
text-align:center;
padding:10px;
/*margin-top:30%;*/
margin-top: 60px;
    text-align: center;
    font-size: 14px;
}
.welcome{
margin-bottom:20px;
}


/* SWITCH BUTTON */

.switch{

display:flex;
border-radius:30px;
overflow:hidden;
margin-bottom:20px;

border:2px solid transparent;

background:
linear-gradient(#050505,#050505) padding-box,
linear-gradient(120deg,#00ffe7,#7c00ff,#00ffe7) border-box;

}

.switch button{

flex:1;
padding:10px;
background:transparent;
border:none;
color:#aaa;
cursor:pointer;

}

.switch .active{

background:linear-gradient(90deg,#8f00ff,#3b82f6);
color:white;

}


/* FORM BOX */

.form-box{

padding:25px;

border-radius:15px;

border:2px solid transparent;

background:
linear-gradient(#0a0a0a,#0a0a0a) padding-box,
linear-gradient(120deg,#00ffe7,#7c00ff,#00ffe7) border-box;

}


/* HEADER */

.header{

display:flex;
justify-content:space-between;
margin-bottom:5px;

}

.header a{

color:#00ffe7;
font-size:12px;
text-decoration:none;

}

.subtitle{

font-size:11px;
margin-bottom:15px;
color:#aaa;

}


/* FORM ROW */

.form-row{

display:flex;
align-items:center;
justify-content:space-between;

border-bottom:1px solid #222;

padding:10px 0;

}

.form-row label{

color:#00ffe7;
font-size:13px;
width:40%;

}

.form-row input,
.form-row select{

width:60%;
background:transparent;
border:none;
color:white;
outline:none;
font-size:13px;

}


/* PASSWORD ICON */

.password{

position:relative;

}

.password i{

position:absolute;
right:5px;
cursor:pointer;
color:#00ffe7;

}


/* TERMS */

.terms{

display:flex;
align-items:center;
font-size:12px;
margin-top:15px;

}

.terms input{
margin-right:8px;
}

.terms a{

color:#00ffe7;

}


/* SUBMIT BUTTON */

.submit-btn{

width:55px;
height:55px;

border-radius:50%;
border:none;

margin:20px auto 0;
display:block;

font-size:20px;
color:white;

cursor:pointer;

background:linear-gradient(135deg,#00ffe7,#0090ff);

box-shadow:0 0 15px #00ffe7;

transition:0.3s;

}

.submit-btn:hover{

transform:scale(1.1);

box-shadow:
0 0 20px #00ffe7,
0 0 40px #00ffe7,
0 0 60px #00ffe7;

}


/* FOOTER */

.copyright{

margin-top:20px;
font-size:11px;
color:#777;

}