/* Login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0078d4;
}

.login-window {
    background: white;
    border: 1px solid #c3c4c6;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.login-header {
    background: #f3f2f1;
    border-bottom: 1px solid #c3c4c6;
    padding: 20px;
    text-align: center;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.login-logo img {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.login-title {
    font-size: 18px;
    font-weight: 600;
    color: #323130;
}

.login-subtitle {
    font-size: 12px;
    color: #605e5c;
    font-weight: 400;
}

.login-content {
    padding: 30px 40px;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #323130;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #c3c4c6;
    border-radius: 0;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: inset 0 0 0 1px #0078d4;
}

.login-btn {
    width: 100%;
    padding: 8px 24px;
    background: #0078d4;
    color: white;
    border: 1px solid #0078d4;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.login-btn:hover {
    background: #106ebe;
    border-color: #106ebe;
}

.login-btn:focus {
    outline: 1px solid #000;
    outline-offset: 1px;
}

.login-alert {
    margin-top: 20px;
}
