/* ==========================================================================
   OOBE AI - Login Page Styles (login.css)
   ========================================================================== */

body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.login-container h1 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}
.logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}
.microsoft-button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-sizing: border-box;
    line-height: 1;
}
.microsoft-button:hover {
    background: #106ebe;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.microsoft-button:active {
    background: #005a9e;
    transform: translateY(0);
}
.microsoft-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    display: block;
}
.error-message {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #fcc;
}
.login-form {
    margin-top: 1.5rem;
}
.login-form .form-group {
    margin-bottom: 1rem;
    padding: 0;
    border-bottom: none;
}
.login-form .form-group:not(:last-child) {
    border-bottom: none;
}
.login-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 0;
}
.login-form .form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}
.login-form .form-group input:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}
.remember-me input[type="checkbox"] {
    width: auto;
}
.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #666;
    font-size: 14px;
    position: relative;
}
.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}
.login-button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.login-button:hover {
    background: #555;
}
