body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 5vh auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

header, footer {
    display: none; /* Hide default branding for now */
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

a.btn-primary,
input[type="email"],
input[type="password"],
input[type="text"],
input[type="submit"],
button {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="email"][readonly],
input[type="text"][readonly] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

a.btn-primary,
input[type="submit"],
button {
    background-color: #0067c5;
    color: white;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease-in-out;
    text-align: center;
}

input[type="submit"]:hover,
button:hover {
    background-color: #004d99;
}

a {
    color: #0067c5;
    text-decoration: none;
    font-size: 0.9rem;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.provider-brand h1 {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.oauth-providers {
    margin-top: 20px;
}

.oauth-btn {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
}

.microsoft-btn {
    background-color: #0078D4;
}

.google-btn {
    background-color: #DB4437;
}
label {
    font-weight:bold;
}
.value-container {
    border:1px solid #999;
    margin-top:10px;
    margin-bottom:10px;
}
.alert {
    padding: 12px 16px;
    margin: 12px 0;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.95rem;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}
