*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#081428;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
padding:20px;
}

.container{
width:100%;
max-width:420px;
}

.card{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

h1{
font-size:28px;
text-align:center;
margin-bottom:10px;
}

.subtitle{
text-align:center;
color:#666;
margin-bottom:25px;
}

.google-btn{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:10px;
background:white;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
cursor:pointer;
font-size:15px;
}

.google-btn img{
width:20px;
}

.divider{
text-align:center;
margin:20px 0;
color:#888;
position:relative;
}

.row{
display:flex;
gap:10px;
margin-bottom:15px;
}

input{
width:100%;
padding:12px;
border-radius:10px;
border:1px solid #ccc;
margin-bottom:15px;
font-size:14px;
}

.password-box{
position:relative;
}

.password-box span{
position:absolute;
right:12px;
top:12px;
cursor:pointer;
}

.main-btn{
width:100%;
padding:14px;
border:none;
border-radius:12px;
background:#2f2f39;
color:white;
font-size:16px;
cursor:pointer;
margin-top:10px;
}

.main-btn:hover{
background:#1e1e26;
}

.switch{
text-align:center;
margin-top:15px;
font-size:14px;
}

.switch a{
color:#1f6feb;
cursor:pointer;
}

.hidden{
display:none;
}

@media(max-width:480px){

.card{
padding:25px;
}

h1{
font-size:22px;
}

}