/* Target only the WordPress login page */
body.login {
    background-color: #f0f0f0;
    /* Add other background styles if needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('https://aadcdn.msftauthimages.net/81d6b03a-kpdeaur4hk8prmicikjo0etsyqmwc3swyrv94ue0baq/logintenantbranding/0/illustration?ts=638441791828569410');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Rest of your login styles */
#login {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 320px;
    margin: 0 auto;
}

/* Remove the internal box around login controls */
.login form {
    background: transparent;
    box-shadow: none;
    padding: auto;
    margin: auto;
    border: none;
}


