@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Cairo:wght@400;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins','Cairo',sans-serif;
}

body{
background:linear-gradient(180deg,#ffffff,#eef3ff);
display:flex;
justify-content:center;
align-items:center;
height:100vh;
overflow:hidden;
}

.login-page{
width:100%;
padding:20px;
}

.login-box{
background:#fff;
border-radius:30px;
padding:35px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
text-align:center;
animation:fadeIn .5s ease;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(25px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.login-box h1{
font-size:42px;
font-weight:700;
color:#111827;
letter-spacing:1px;
margin-bottom:4px;
}

.login-box p{
font-size:18px;
font-weight:600;
color:#2563eb;
margin-bottom:28px;
}

.input-box{
position:relative;
margin-bottom:18px;
}

.input-box i{
position:absolute;
right:18px;
top:18px;
color:#9ca3af;
font-size:20px;
}

.input-box input{
width:100%;
height:60px;
border:2px solid #e5e7eb;
border-radius:16px;
padding:0 55px 0 75px;
font-size:16px;
outline:none;
transition:.3s;
background:#fff;
}

.input-box input:focus{
border-color:#2563eb;
box-shadow:0 0 12px rgba(37,99,235,.2);
}

#countryCode{
position:absolute;
left:18px;
top:18px;
font-weight:700;
color:#2563eb;
}

.login-btn,
.create-btn{
width:100%;
height:60px;
border:none;
border-radius:16px;
font-size:19px;
font-weight:700;
cursor:pointer;
margin-top:15px;
transition:.25s;
}

.login-btn{
background:linear-gradient(90deg,#2563eb,#1d4ed8);
color:#fff;
box-shadow:0 10px 25px rgba(37,99,235,.35);
}

.create-btn{
background:linear-gradient(90deg,#16a34a,#22c55e);
color:#fff;
box-shadow:0 10px 25px rgba(34,197,94,.35);
}

.login-btn:hover,
.create-btn:hover{
transform:translateY(-2px) scale(1.02);
}

.coins{
margin-top:35px;
display:flex;
justify-content:center;
align-items:center;
gap:28px;
}

.coin{
width:60px;
height:60px;
object-fit:contain;
transition:.3s;
}

.coin:hover{
transform:scale(1.1);
}

.btc{
font-size:60px;
color:#f7931a;
}

#loading{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background:#fff;
display:none;
justify-content:center;
align-items:center;
flex-direction:column;
z-index:9999;
}

.loader{
width:80px;
height:80px;
border:8px solid #e5e7eb;
border-top:8px solid #22c55e;
border-radius:50%;
animation:spin .8s linear infinite;
margin-bottom:25px;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

#loading h2{
font-size:26px;
font-weight:700;
color:#111827;
  }
