html, body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    padding-top: 20px;
}

.login-wrapper {
    width: 100%;
    min-width: 300px;
    max-width: 300px;
    text-align: center;
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo img {
    max-width: 64px;
}

.login-container {
    width: 100%;
    padding: 20px;
    background: #f6f8fa;
    border: 1px solid #d0d7deb3;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: none;
    border-color: #0366d6;
}

.forgot-password,
.create-account {
    display: block;
    margin-top: 10px;
}

.forgot-password {
    color: #0366d6;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.label-left {
    text-align: left !important;
}

.alert {
    min-width: 300px;
}

.footer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.footer a {
    color: #0366d6;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: #1f883d;
    border: 1px solid #1f883d;
    font-weight: 500;
}

.btn-primary:hover {
    background: #17622b;
    /* Darker shade for hover state */
    border-color: #17622b;
}

.btn-primary:focus {
    background: #17622b;
    border-color: #17622b;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-primary:active {
    background: #1e7e34;
    border-color: #1c7430;
    box-shadow: none;
    outline: none;
}

.btn-primary:active:focus {
    box-shadow: none;
}

.btn-primary:disabled,
.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled:active {
    background: #1f883d;
    border-color: #1f883d;
}