body {
    min-height: 100vh;
}

main {
    max-width: 400px;
}

span {
    cursor: pointer;
    text-decoration: underline;
}

.my-5 !important{
    margin-top: 0rem !important;
    margin-bottom: 4rem !important;
}

input::placeholder,
select,
option,
input[type="text"] {
    font-size: 13px !important;
}

.input-modal[type="text"] {
    text-align: center !important;
}

footer {
    position: fixed;
    bottom: 30px;
    width: 100%;
    padding: 10px;
}

footer .container {
    display: flex;
    justify-content: flex-end;
}

footer .btn {
    width: 200px;
}

.modal-content  {
    background-color: #efefef !important;
    box-shadow: 10px 10px 10px #344054 !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    min-width: 70%;
}

@media (max-width: 370px) {
    .modal-content{
        width: 95vw;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.modal.animate-out-left {
    animation: slideOutLeft 0.8s forwards;
}

.modal.animate-in-right {
    animation: slideInRight 0.8s forwards;
}