body.custom-login {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3d1df;
}

.login-wrapper {
    width: 50%;
    display: flex;
    flex-direction: row;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background: #f4f5f9;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
}

.login-wrapper div {
    width: 50%;
}


.login-card {
    height: 550px;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.login-card form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 200px;
}


p {
    text-align: center;
}

.login-card img {
    margin-bottom: 10px;
}


.login-card form button {
    background: #9D00FF;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.login-card form button:hover {
    background: #000;
}

.image-handler {
    background-image: url(https://aswecelebrate.com/wp-content/uploads/2026/02/wedding-login.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-wrapper .error {
    width: 100%;
}



@media only screen and (max-width: 600px) {

    .login-wrapper {
        width: 90%;
        flex-direction: column;
    }

    .login-wrapper div {
        width: 100%;
    }


    .login-card {
        height: auto;
        padding: 50px 30px 30px 30px;
    } 


    .image-handler {
        height: 100px;
    }

}