.wrapper {
    position: relative;
    width: 100%;
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo img {
    position: relative;
    width: 150px;
    height: auto;
    display: flex;
}
.logo h2 {
    position: relative;
    font-family: "Protest Guerrilla", sans-serif;
    font-size: 25px;
    color: #333;
}


.form_sec {
    position: relative;
    width: 700px;
    margin-top: 60px;
    z-index: 1;
}
.form_sec form {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form_sec form .form_box {
    position: relative;
    margin-bottom: 40px;
}
.form_sec form .form_box.halfWidth {
    width: 48%;
}
.form_sec form .form_box.fullWidth {
    width: 100%;
}

.form_sec form .form_box .input_box {
    position: relative;
    width: 100%;
}
.form_sec form .form_box .input_box.input {
    height: 40px;
}
.form_sec form .form_box .input_box.textarea {
    height: 80px;
}

.form_sec form .form_box .input_box input {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: "SUSE", sans-serif;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #111;
    padding: 5px 20px;
    z-index: 1;
    opacity: 0;
    transition: 0.4s;
}

.form_sec form .form_box .input_box textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: "SUSE", sans-serif;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    font-size: 15px;
    color: #111;
    padding: 10px 20px;
    z-index: 1;
    opacity: 0;
    transition: 0.4s;
}

.form_sec form .form_box .input_box input:focus,
.form_sec form .form_box .input_box input:valid,
.form_sec form .form_box .input_box textarea:focus,
.form_sec form .form_box .input_box textarea:valid {
    opacity: 1;
}

.form_sec form .form_box .input_box .text
{
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-family: "SUSE", sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 0 10px;
    display: flex;
    pointer-events: none;
    transition: 0.5s;
    color: #444;
}
.form_sec form .form_box .input_box input:focus ~ .text,
.form_sec form .form_box .input_box input:valid ~ .text,
.form_sec form .form_box .input_box textarea:focus ~ .text,
.form_sec form .form_box .input_box textarea:valid ~ .text {
    top: -35px;
    left: -5px;
    color: #E5322D;
    font-size: 12px;
    font-weight: 500;
}
.form_sec form .form_box .input_box .line
{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #009ED6, #E5322D);
    transition: all 0.5s;
    border-radius: 2px;
    pointer-events: none;
}

.form_sec form .form_box .input_box input:focus ~ .line,
.form_sec form .form_box .input_box input:valid ~ .line,
.form_sec form .form_box .input_box textarea:focus ~ .line,
.form_sec form .form_box .input_box textarea:valid ~ .line {
    height: 100%;
    background: #009dd647;
    border-radius: 6px;
    transition: all 0.5s;
}

.form_sec form h4 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Lemonada', cursive;
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.form_sec form .form_btn {
    position: relative;
    margin-top: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.form_sec form .form_btn button {
    position: relative;
    width: 225px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4FBF26 ;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-family: "SUSE", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s;
}
.form_sec form .form_btn button i {
    position: relative;
    font-size: 16px;
    margin-right: 8px;
}
.form_sec form .form_btn button:hover {
    border-radius: 50px;
    transition: all 0.6s;
}



.float_btn{
    position: fixed;
    right: 50px;
    bottom: 45px;
    z-index: 499;
    display: flex;
    
}

.float_btn a{
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 8px 10px 20px rgba(17, 16, 16, 0.4),
    -4px -4px 12px rgba(40, 39, 39, 0.1);
}

.float_btn a i{
    position: relative;
  width: 100%;
  height: 100%;
  background: #009ED6;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}