body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('/static/bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #FFFFFF;
}

/* Centered container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Login box */
.login-box {
    width: 368px;
    min-height: 252px;
    padding: 20px 40px 40px 40px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    text-align: center;
    margin: 9.5% auto auto auto;
    border: 1px solid #dadcde;
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

/* Logo or brand name */
.brand-logo {
    margin-bottom: 30px;
}

.brand-logo img {
    max-width: 400px;
    max-height: 400px;
    margin: 40px auto 25px;
}

.login-box h1 {
    font-family: 'Lato';
    font-size: 20px;
    font-weight: inherit;
}

/* Form styling */
.form-control {
    display: block;
    width: 90%;
    height: 36px;
    padding: .375rem .75rem 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #3a4248;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dadcde;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 12.8px auto;
    padding: 6px 12px;
}

.form-control:focus {
    outline: 0;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Login button */
.login-button {
    width: 100%;
    height: 40px;
    background-color: #48525a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #33434d;
}

/* GlobalProtect specific font */
.globalprotect-font {
    font-family: 'Lato', sans-serif;
}
