*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#eef4ff;
}

.container{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{
    width:360px;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    border-top:6px solid #0d47a1;
}

h2{
    text-align:center;
    color:#0d47a1;
    margin-bottom:20px;
}

input,select{
    width:100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    width:100%;
    padding:12px;
    border:none;
    background:#6d4c41;
    color:#fff;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#0d47a1;
}

@media(max-width:600px){
.login-box{
width:95%;
}
}