.card-container {
    width: 25rem;
    position: fixed;
    bottom: 0px;
    right: 20px;
    max-width: 100%;
    z-index: 999999999 !important;
    background: none transparent !important;
}

.success-message {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card {
    box-shadow: 5px 10px 8px 10px #88888883;
    border-radius: 10px !important;
    background: transparent !important;
}

.card_header {
    background-color: rgb(45, 60, 79);
    color: rgba(255, 255, 255, 0.825);
    padding: 1.5rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
}

.card_heading {
    font-weight: 800;
    margin-left: 20px;
    font-size: 1.2rem;
    margin-bottom: auto !important;
}

.fa-user-group {
    font-size: 1.2rem;
}

.card_body {
    background-color: #f7f7f7;
    padding: 1.5rem;
}

.card_footer {
    display: flex;
    padding: 0.8rem;
    background-color: white;
    justify-content: space-between;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.text-sm {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: rgb(86, 86, 86);
}

a {
    text-decoration: none;
}

.btn-send {
    background-color: #ddd;
    border: none;
    color: #888;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-container {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0;
}

.btn-close {
    color: rgba(255, 255, 255, 0.496);
    background: linear-gradient(90deg, #2d3c4f 0%, #2d3c4f 100%);
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.fa-xmark {
    font-size: 1.2rem;
}


/* FORM */

.form_heading {
    margin-bottom: 1rem;
    color: rgb(86, 86, 86);
}

.form-group {
    position: relative;
}

.form-group+.form-group {
    margin-top: 30px;
}

.form-label {
    position: absolute;
    left: 5px;
    top: 10px;
    color: #999;
    background-color: #fff;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.focused .form-label {
    transform: translateY(-60%);
    font-size: 0.75em;
}

.form-input {
    position: relative;
    padding: 10px;
    width: 100%;
    outline: 0;
    border: 1px solid rgba(0, 0, 0, 0.421) !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 0 0 #e5e5e5 !important;
    transition: box-shadow 150ms ease-out;
    height: 3rem;
}

.textarea {
    height: 6rem;
}

.form-input:focus {
    /* box-shadow: 0 2px 0 0 blue; */
}

.form-input.filled {
    /* box-shadow: 0 2px 0 0 lightgreen; */
}

@media only screen and (max-width: 320px) {
    section {
        background-color: lightblue;
    }
    .card-container {
        right: 0px;
        left: 0px;
       
        bottom: 0px;
        
    }
    .card_header {
        border-radius: 0px;
    }
    .card_footer {
        border-radius: 0px;
    }
}