body.login-page {
    margin: 0;
    height: 100vh;
    background: radial-gradient(ellipse at 70% 50%, #6f9bd1 0%, #3f6da1 30%, #234770 65%, #14253d 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    overflow: hidden;
    position: relative;
}

.login-form {
    position: absolute;
    bottom: 38%;
    left: 4%;
}

.login-form .login-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.login-form label {
    display: inline-block;
    width: 70px;
    font-size: 13px;
    color: white;
}

.login-form input {
    padding: 2px 4px;
    border: 1px solid #b6b6b6;
    background: white;
    color: #222;
    font-size: 13px;
    width: 180px;
    height: 20px;
    box-sizing: border-box;
}

.login-form .btn-ok {
    margin-left: 6px;
    padding: 1px 14px;
    background: linear-gradient(to bottom, #f5f5f5, #d8d8d8);
    border: 1px solid #888;
    cursor: pointer;
    font-size: 12px;
    color: #222;
    height: 20px;
}

.login-form .btn-ok:hover {
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
}

.login-form .forgot {
    display: inline-block;
    margin-top: 10px;
    margin-left: 70px;
    color: white;
    font-size: 11px;
    text-decoration: none;
}

.login-form .forgot:hover {
    text-decoration: underline;
}

.brand {
    position: absolute;
    bottom: 8%;
    right: 4%;
    text-align: right;
    color: rgba(255, 255, 255, 0.95);
}

.brand .logo {
    font-size: 58px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand .logo em {
    font-style: italic;
    color: #f0f0f0;
}

.brand .tagline {
    font-size: 12px;
    margin-top: 6px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}
