.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;
}

.invoice_type_selection_dropdown {
    position: relative;
    margin-top: 40px;
    width: 700px;
    z-index: 150;
}
.invoice_type_selection_dropdown input {
    display: none;
}

.invoice_type_selection_dropdown .dropdown_btn {
    position: relative;
    width: 100%;
    height: 50px;
    border: 2px solid rgb(220, 220, 220);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 5px 25px;
    cursor: pointer;
    transition: all 0.5s;
}
.invoice_type_selection_dropdown .dropdown_btn.active {
    border: 2px solid #E5322D;
    transition: all 0.5s;
}
.invoice_type_selection_dropdown .dropdown_btn span {
    position: absolute;
    left: 25px;
    top: 50%;
    font-family: "SUSE", sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    transform: translateY(-50%);
    transition: all 0.5s;
}
.invoice_type_selection_dropdown .dropdown_btn p {
    position: relative;
    width: calc(100% - 50px);
    font-size: 15px;
    color: #333;
    font-family: "SUSE", sans-serif;
}
.invoice_type_selection_dropdown .dropdown_btn a {
    position: relative;
    width: 50px;
    height: 100%;
    font-size: 15px;
    color: rgb(195, 195, 195);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}
.invoice_type_selection_dropdown .dropdown_btn i {
    position: relative;
    transition: all 0.5s;
}
.invoice_type_selection_dropdown .dropdown_btn.active i {
    transform: rotate(-180deg);
    transition: all 0.5s;
}

.invoice_type_selection_dropdown input:focus ~ .dropdown_btn,
.invoice_type_selection_dropdown input:valid ~ .dropdown_btn {
    border: 2px solid #E5322D;
    transition: all 0.5s;
}

.invoice_type_selection_dropdown input:focus ~ .dropdown_btn span,
.invoice_type_selection_dropdown input:valid ~ .dropdown_btn span {
    top: -2px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 0px 8px;
    line-height: 1;
    color: #009ED6;
    background: #fff;
    transition: all 0.5s;
}

.invoice_type_selection_dropdown .dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 6px 8px 15px rgba(126, 126, 126, 0.334);
    border-radius: 6px;
    transition: all 0.8s;
}

.invoice_type_selection_dropdown .dropdown.active{
    max-height: 300px;
    transition: all 0.8s;
}

.invoice_type_selection_dropdown .dropdown .dropdown_inner {
    position: relative;
    width: 100%;
    padding: 15px;
}

.invoice_type_selection_dropdown .dropdown .dropdown_inner ul {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 275px;
    overflow: auto;
}

.invoice_type_selection_dropdown .dropdown .dropdown_inner ul li {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 10px 20px;
    margin-bottom: 5px;
    cursor: pointer;
    font-family: "SUSE", sans-serif;
    font-size: 15px;
    color: #666;
    border-radius: 5px;
    transition: all 0.5s;
}

.invoice_type_selection_dropdown .dropdown .dropdown_inner ul li:hover {
    background: #009ED6;
    color: #fff;
    transition: all 0.5s;
}



.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 .form_box p {
    position: relative;
    margin-top: 10px;
    font-family: "SUSE", sans-serif;
    font-size: 15px;
    color: #666;
}
.form_sec form .form_box p b {
    font-weight: 500;
    color: #333;
}

.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;
    background: #4FBF26 ;
    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%;
}