.form {
    background: #F2F2F2;
    box-shadow: -6px 6px 20px 5px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.form .carousel-inner{
    height: auto !important;
    min-height: 17rem;
    display: flex;
    align-items: center;
}

.form-item {
    padding: 0 3rem;
}

.form input, .form select, .form::placeholder {
    color: #27326a;
    border: 2px solid rgba(1, 42, 102, 0.5);
}

.form #amount {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}
.form #amount input {
    width: 90%;
    padding-top: .6rem;
    padding-bottom: .6rem;
    text-align: center;
    background-color: #ffffff;
    cursor: default;
}

.form #amount input:active, .form #amount input:focus{
    box-shadow: initial !important;
    border: 2px solid rgba(1, 42, 102, 0.5);
}

.form input, .form select {
    padding-top: .3rem;
    padding-bottom: .3rem;
    font-size: .9rem;
    background-color: rgba(187, 187, 187, .3);
}
.form #amount .btn{
    padding: 0;
    border: none;
}

.form #amount .btn i {
    color: #0ece7d;
    font-size: 1.5rem;
}
.form #amount .btn img {
    width: 30px;
    margin-top: 0;
}

.form .btn-send {
    background-color: #0ece7d;
    color: #ffffff;
    padding: .4rem 1rem;
    text-align: center;
    transition: all .5 ease;
    font-size: .9rem;
}

#back-form {
    position: absolute;
    top: .5rem;
    right: 1rem;
}

#back-form i {
    color: rgba(1, 42, 103, 0.5);
    cursor: pointer;
}
#back-form img {
    margin-top: 0;
}