/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
body {
    font-family: Arial, Helvetica, sans-serif;
}

h2#swal2-title {
    justify-content: center;
}

.gif-img {
    max-width: 240px;
    margin: 0 auto;
}

.title-img {
    max-width: 350px;
    margin: 0 auto;
}

.image-auto img {
    width: auto;
}

.rg-2 {
    row-gap: 20px;
}

.form-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 22px;
}

.form-container form {
    width: 100%;
    margin: 0;
}

.form-container .form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-container .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-container label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #F82602;
    line-height: 20px;
    margin: 0;
}

.form-container input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    background: #f8f8f8;
    margin: 0;
}

.submit-btn {
    width: 40%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 20px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 13.8309px;
    background: #F91223;
    min-height: unset;
    height: unset;
    line-height: normal;
}

@media only screen and (max-width: 1000px) {
    .form-container .form-row {
        flex-direction: column;
    }
}