body{
    font-family: 'Segoe UI', sans-serif;
    /* background: linear-gradient(135deg, #74ebd5, #ACB6E5); */
     background: linear-gradient(135deg, #e3f2fd, #f4f6f9);
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    margin:0;
}

.login-box{
    background:white;
    padding:40px;
    width:350px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
}

/* Logo */
.login-box img{
    width:120px;
    margin-bottom:15px;
}

/* Heading */
.login-box h2{
    margin-bottom:20px;
    color:#333;
}

/* Form Group */
.form-group{
    text-align:left;
    margin-bottom:15px;
}

/* Labels */
.form-group label{
    display:block;
    margin-bottom:5px;
    font-size:14px;
    color:#555;
}

/* Inputs */
.form-group input{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

/* Focus effect */
.form-group input:focus{
    border-color:#28a745;
    outline:none;
}

button{
    width:100%;
    padding:12px;
    margin-left: 10px;
    background:#28a745;
    color:white;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#218838;
}
