body{
    margin:0;
    font-family:Poppins,sans-serif;
}

/* Background */
.login-page{
    min-height:100vh;
    background:linear-gradient(to right,#2563EB,#1E40AF);
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Container */
.login-container{
    width:100%;
    max-width:420px;
}

/* Card */
.login-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* Title */
.title{
    text-align:center;
    color:#2563EB;
    margin-bottom:10px;
}

/* Subtitle */
.subtitle{
    text-align:center;
    color:gray;
    margin-bottom:30px;
}

/* Input */
.form-control{
    width:100%;
    height:50px;
    padding:0 15px;
    border-radius:12px;
    border:1px solid #ccc;
    box-sizing:border-box;
}

/* Button */
.btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    background:#2563EB;
    color:white;
    font-size:16px;
    cursor:pointer;
}

/* Hover */
.btn:hover{
    background:#1E40AF;
}

/* Register */
.register-text{
    text-align:center;
    margin-top:20px;
}