/* 1. Hide the Username/Email and Password input groups */
#login-box .input-group.mb-2 {
    display: none !important;
}

/* 2. Hide the local login button container (the d-grid wrapper) */
#login-box .d-grid.mb-2.mt-3 {
    display: none !important;
}

/* 3. Hide the Captcha hidden field just in case it takes up space */
#login-box input[name="captcha"] {
    display: none !important;
}

/* 4. Hide the footer containing Forgot Password / Register links */
#login-box .form-check{
    display: none !important;
}
#login-box .register{
    display: none !important;
}
#forgot-password{
    display: none !important;
}
/* 5. Ensure the Microsoft SSO (social-login) section is centered and visible */
section.social-login {
    display: flex !important;
    justify-content: center !important;
    margin: 20px 0 !important;
    padding: 10px 0;
}

/* Add Estonian announcement above the SSO button */
section.social-login::before {
    content: "Sisselogimine on lubatud ainult koolitöötaja e-posti kontoga";
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #71ADBD; /* A subtle red to grab attention, or use #333 for black */
    margin-bottom: 15px;
    font-size: 0.95rem;
}