*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:linear-gradient(135deg,#0d6efd,#4dabf7);

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-container{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-card{

    width:420px;

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.login-card h2{

    text-align:center;

    color:#0d6efd;

    margin-bottom:10px;

    font-weight:bold;

}

.login-card p{

    text-align:center;

    color:#666;

    margin-bottom:30px;

}

.form-control{

    height:50px;

    margin-bottom:20px;

}

.btn{

    height:50px;

    font-size:18px;

}

a{

    text-decoration:none;

}

a:hover{

    text-decoration:underline;

}

/* 2026-08-28 readability update - larger website fonts */
html { font-size: 17px; }
body { font-size: 17px; }
button, input, select, textarea { font-size: 1rem; }
