/**
* LoginForm.css
*/

.login-form {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}.login-form::before {
    content: '';
    display: block;
    width: 265px; /* Adjust width and height according to your logo */
    height: 300px; /* Adjust width and height according to your logo */
    /* background-image: url('../../assets/images/cbs-retina-logo.440x0.png'); */
    background-image: url('../../assets/images/CBS-Bowen-Training_Logo.png');
    background-size: contain; /* Adjust to fit the logo within the specified width and height */
    background-repeat: no-repeat;
    position: absolute;
    top: -170px; /* Adjust the distance from the form */
    left: 50%;
    transform: translateX(-50%);
    z-index: 0; /* Set the pseudo-element behind the form */
    pointer-events: none;
}
.login-form input {
    margin-top: 6px;
}
.login-form a {
    color: var(--grey300);
}