body {
    height: 100vh;
    width: 100%;
    position: fixed;
}

.login-main {
    width: 100%;
    height: 100vh;
}

.custom-hero-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.custom-hero-bg svg {
    width: 100vw;
    height: 100vh;
}

.login-content {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 40%;
    border-radius: 15px;
}

.password-group {
    display: none;
}

.verification-input {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.verification-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@media screen and (max-width: 576.98px) {
    .login-form {
        width: 80%;
    }
}