*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:Arial, 
    sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
background:linear-gradient
(135deg,#0f172a,#2563eb,#7c3aed);
}
.container {
width:100%;
display:flex;
justify-content:center;
align-items:center;
}
.login-box{
    width:360px;
    padding:40px;
    background:#ffffff;
    border-radius:20px;
    text-align:center;
    box-shadow: 0 20px 50px
    rgba(0,0,0,0.25);
}
.login-box h1{
    color: #1e38a1;
    margin-bottom:10px;
}
.login-box p{
    color:#0e3a8a
    margin-bottom:22px;   
}
.login-box input{
    display:block;
    width:100%;
    padding:13px;
    margin-bottom:14px;
    border:1px solid #d1d5db;
    border-radius:12px;
    outline:none;
    font-size:15px;
}
.login-box input:focus{
    border-color: #1e38a1;
}
.login-box button{
    display:block;
    width:100%;
    padding:13px;
    background-color:#1d4ed8;
    color:white;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.login-box button:hover{
    background:coor#1d4ed8;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    transition: .3s;
}
.forgot-password{
    display:flex;
    justify-content:flex-end;
    width:100%;
    margin-top:8px 0 15px 0;;
}
.forgot-password a{
    text-decoration:none;
    color:#2563eb;
    margin-right:14px
}
.register-link{
    text-align:center;
    font-size:14px;
    margin-top:10px;
}
.forgot-password a:hover,
.register-link a:hover{
    text-decoration:underline;
}