
.action-container {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 2% 20px 2%;
    padding: 10px 30px;

    form {
        margin: 30px 0 10px;
    }

    .btn {
        width: 170px;
    }
}

.login-modal-wide {
    position: fixed;
    top: 26%;
    max-height: calc(100vh - 15%);
    overflow: auto;
    z-index: 101;
    background-color: white;
    width: 100%;
    height: fit-content;

    h1 {
        font-size: 26px;
    }
}

.action-subtexts {
    font-size: 14px;
    line-height: 18px;
}

.btn-outline-success.btn-outline-success {
    font-weight: 700;
    border-width: 2px;
    color: var(--success);
    border-color: var(--success);

    &:hover,&:focus {
        background-color: white;
        border-color: var(--trans-color);
        color: var(--trans-color);
    }
}
