* {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
}

body {
    /* font-family: Arial, Helvetica, sans-serif; */

}

.getquote {
    display: flex;
    justify-content: center;
    border-radius: 100px;
    align-items: center;
    height: 1000vh;
    padding-left: 40%;
    font-family: Arial, Helvetica, sans-serif;
}

.form {
    width: 350px;
    height: 500px;

    background-color: rgba(30, 39, 39, 0.9);
    box-shadow: 0 5px 30px black;
    border-radius: 10px;
}

.btn_popup {
    padding: 0%;
    margin: 15px 0px 30px 30px;
    border-style: none;
    /*background-color: #000;*/
    color: #fff;
    font-size: 18px;
    font-weight: 550;
    padding: 16px 20px;
}

.btn button {
    padding: 0%;
    padding-left: 100%;
}

.formGroup {
    display: flex;
    justify-content: center;
}

.formGroup input {
    border: none;
    width: 300px;
    padding: 1px;
    margin-bottom: 20px;
    background-color: transparent;
    border-bottom: 2px solid white;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.formGroup textarea {
    border: none;
    width: 300px;
    padding: 8px;
    margin-bottom: 20px;
    background-color: transparent;
    border-bottom: 2px solid white;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.select {
    border: none;
    width: 300px;
    padding: 3px;
    margin-bottom: 20px;
    background-color: transparent;
    background: transparent;
    border-bottom: 2px solid white;
    color: white;
    font-weight: bold;
    font-size: 15px;


}

.select option {
    background-color: rgba(53, 53, 54, 0.802);

    /* opacity: 0.8; */
}

::placeholder {
    color: white;
}

input:focus {
    outline: none;
    border-bottom: 2px solid #87CEEB;
    font-size: 17px;
    font-weight: bold;
}

.btn2 {
    padding: 10px;
    margin-top: 10px;
    outline: none;
    width: 150px;
    border-radius: 20px;
    border-style: none;
    background-color: #87CEEB;
    color: whitesmoke;
    font-weight: 600;
}

.btn2:hover {
    background-color: #00bfff;
}

.close {
    /* padding-left: 30px; */
    background: transparent;
}

.fa {
    background: transparent;
}

.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 100px;
    background: rgba(90, 90, 90, 0.5);
    z-index: 9999;
    overflow: hidden;

}

.g-recaptcha {
    opacity: 0.9;
}