body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom, #f50505 0%, #090979 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#LoginForm {
    width: 440px;
    /*max-width - sets max width an element can grow*/
    max-width: 96vw; /*vw means view port 1vw = 1% width of browser's visible area*/
    margin: 80px auto;
    padding: 56px 60px 40px 40px; /* Increased right padding from 40px to 60px */
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    text-align: center;
}

#LoginForm h1 {
    margin-bottom: 0.5em; /*1em = 16px*/
    /*color: #0074D9;*/
    font-size: 2em;
    letter-spacing: 1px;
}

#LoginForm p {
    color: #333;
    margin-bottom: 1.5em;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.1em;
    background: #f7f7f7;
    transition: border 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 2px solid #0074D9;
    outline: none;
}

#loginButton {
    width: 100%;
    padding: 12px;
    background: #0074D9;
    color: #fff;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-weight: bold;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(0,116,217,0.13);
}

#loginButton:hover {
    background: #005fa3;
}

#loginButton:active {
    background: #fff;
    color: #0074D9;
    border: 2px solid #0074D9;
}

#loginButton:focus {
    box-shadow: 0 0 0 4px #bbdefb;
    border: 2px solid #0074D9;
}

#loginButton:disabled {
    background: #e3f2fd;
    color: #90caf9;
    cursor: not-allowed;
    border: none;
}