.modal-dialog,
.modal-content {
    border-radius: 2.3rem;
}

.app-container {
    background-size: cover;
}

.modal-body {
    padding: 1.5rem;
}

.app-login-box h4 div {
    opacity: 1;
}

.modal-title {
    margin-bottom: 3rem;
}

.input {
    border-radius: 2rem;
    padding: 1.5rem 2rem;
    border: 1px solid #222222cf;
}

#account {
    position: absolute;
    z-index: 99;
    /* margin-left: 12rem; */
    /* margin-top: 7rem; */
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* width: 100%; */
}

.title {
    padding: 10rem 0 2rem 16rem;
    font-size: 2rem;
    position: absolute;
    background-color: #f2f2f2;
    width: 100%;
}

.image img {
    width: 100% !important;
    object-fit: cover;
}

.modal-dialog {
    max-width: 27rem !important;
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.login {
    background: none;
    border: none;
    width: 100%;
}

.login button {
    padding: 0.75rem;
    width: 100%;
    border-radius: 2rem;
    color: #000;
    font-size: larger;
    margin-top: 2rem;
}

.text-primary {
    color: #1b1b5c !important;
    font-size: 2.5em;
}


@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .modal-dialog {
        max-width: 100% !important;
        margin: 0;
        height: 100vh; /* Full screen height */
        display: flex;
        justify-content: center;
        align-items: center;
        /* position: absolute; */
        /* top: 0;
        left: 0; */
    }
    #account {
        /* top: 0;
        left:0 */
        width:100%;
        right:0;
    }
    .modal-content {
        height: 100%; /* Make the modal content fill the dialog */
        border-radius: 0; /* Remove rounded corners for fullscreen */
        display: flex;
        backdrop-filter: blur(9px);
        flex-direction: column;
        background-color: #ffffff57;
        justify-content: center;
        align-items: center;
    }

    .modal-body {
        flex: unset; /* Allow the body to stretch */
         /* Enable scrolling for long content */
         /* Adjust padding for better appearance */
    }
}


