.formBoxV {
    position: absolute;
    width: 20%;
    left: 5%;
    top: 24%;
    z-index: 3;
    background-image: linear-gradient(green, yellow);
    padding: 2%;
}

.formBoxV h3 {
    font-size: 200%;
    direction: rtl;
    text-align: center;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    
}

.formBoxV h6 {
    font-size: 80%;
    direction: rtl;
    text-align: center;
    color: #ffffff;
}

.formBoxV form{
    margin-top: 25%;
}

.formBoxV .input_box {
    width: 100%;
    margin-top: 7%;
}

.formBoxV input[type='text'] {
    width: 100%;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    direction: rtl;
    padding: 3%;
    font-size: 100%;
    color: #000000;
    outline: none;
    background: #ffffff;
}

.formBoxV .input_box_email {
    width: 99%;
    float: right;
    margin-top: 1%;
}

.formBoxV .input_box_email input {
    padding: 2%;
}

.formBoxV .container {
	display: block;
	position: relative;
	padding:0% 12% 0 0;
	margin-top: 5%;
	cursor: pointer;
	font-size: 0.7em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	direction: rtl;
	text-align: right;
}

/* Hide the browser's default checkbox */
.formBoxV .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.formBoxV .checkmark {
	position: absolute;
	height: 1vw;
	width: 1vw;
	background-color: #fff;
	right:0;
	top:0;
	border:0.1vw solid #c1c1c1;
}

/* On mouse-over, add a grey background color */
.formBoxV .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.formBoxV .container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.formBoxV .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.formBoxV .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.formBoxV .container .checkmark:after {
	left: 25%;
	top: 1%;
	width: 25%;
	height: 60%;
	border: solid #000;
	border-width: 0 0.15vw 0.15vw 0;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}


.formBoxV .input_box_submit {
    width: 30%;
    margin: none;
    float: left;
    margin-left: 1%;
}

.formBoxV input[type='submit'] {
    width: 100%;
    border: none;
    direction: rtl;
    padding: 4%;
    font-size: 100%;
    color: #fff;
    outline: none;
    background: #0e76bc;
    border-radius: 4px;
    font-weight: bold;
}


/* Mobile Form*/

@media only screen and (max-width: 480px) {
.formBoxV {
    position: static;
    width: 100%;
    background-color: rgba(44, 51, 59, 1);
    padding: 2% 2% 5%;
}

.formBoxV h3 {
    font-size: 1000%;
    direction: rtl;
    text-align: center;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    
}

.formBoxV h6 {
    font-size: 500%;
    direction: rtl;
    text-align: center;
    color: #ffffff;
}

.formBoxV form{
    margin-top: 5%;
}
    .formBoxV .input_box {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-top: 2%;
    }
    .formBoxV input[type='text'] {
        font-size: 550%;
        padding: 4% 2%;
    }
	
.formBoxV .container {
	padding:0% 8% 0 0;
	margin-top: 3%;
	font-size: 4em;
}

/* Create a custom checkbox */
.formBoxV .checkmark {
	height: 5vw;
	width: 5vw;
	background-color: #fff;
	border:0.1vw solid #c1c1c1;
}

/* On mouse-over, add a grey background color */
.formBoxV .container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.formBoxV .container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Style the checkmark/indicator */
.formBoxV .container .checkmark:after {
  border-width: 0 0.8vw 0.8vw 0;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
	transform: rotate(30deg);
}
 .formBoxV input[type='submit'] {
        padding: 4% 0;
        font-size: 650%;
    }
 }