/* login.css */
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.wrapper {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Keep children centered horizontally */
    justify-content: center;
    flex: 1;
    width: 100%;
    padding-top: 20px; /* Add some space at the top */
}
.login {
    width: 400px;
    padding: 30px;
    border-radius: 8px;
}
.login h2 {
    text-align: center;
    margin-bottom: 20px;
}
.logo {
    display: block;
    max-width: 250px;
    margin: 0 auto 20px;
}
#ms-login-btn {
    margin-top: 10px;
}
.login-header {
    height: 54px;
    display: flex;
}