/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:400,700&display=swap');*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather Sans', sans-serif;
}

body{
    background: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    padding: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.wrapper{
    max-width: 100%;
    width: 400px;
    background-color: #fff;
    margin: 20px auto;
    overflow: hidden;
    /*padding: 30px;*/
    box-shadow: 0 0 6px 1px;
    border-radius: 10px;
}

.wrapper .title{
    font-weight: 700;
    margin-bottom: 25px;
    color: black;
    text-transform: uppercase;
    text-align: center;
    /*background-color: #f7f7f7;
    border-bottom: 2px solid #f7f7f7;*/
    padding: 20px 40px;
    margin-bottom: 0;
}

.wrapper .title h2 {
    margin: 0;
}

.wrapper .tabs .tabs__head{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgba(211, 210, 210);
    position: relative;
}

.wrapper .tabs .tabs__toggle{
    font-size: 18px;
    color: #797878;
    cursor: pointer;
    padding: 13px;
}

.wrapper .tabs .tabs__toggle.is-active{
    color: hsl(200, 60%, 55%);;
}

.wrapper .tabs .tabs__body .tabs__content{
    padding: 30px;
    display: none;
    animation: moving .5s ease;
}

@keyframes moving{
    from{transform: translateX(50px);opacity: 0;}
    to{transform: translateX(0px);opacity: 1;}
}

.wrapper .tabs .tabs__body .tabs__content .tabs__title{
    font-size: 25px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform:capitalize;
}

.wrapper .tabs .tabs__body .tabs__content .tabs__text{
    font-size: 18px;
    color: #000;
}

.wrapper .tabs .tabs__body .tabs__content.is-active{
    display: block;
}

.line{
    position: absolute;
    top: 45px;
    left: 16px;
    width: 130px;
    height: 5px;
    background-color: hsl(200, 60%, 50%);
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.wrapper .form{
    padding: 19px 10px;
}


.wrapper .form .input_field{
    margin-bottom: 12px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    font-size: 17px;
}

.wrapper #API .form .input_field{
    margin-bottom: 11px;
    padding-bottom: 18px;
}


.wrapper .form .input_field label{
    width: 300px;
    color: black;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.wrapper .form .input_field .input{
    display: block;
    width: 100%; /*EDW GIA TO TIMER*/
    outline: none;
    border: 2px solid #d5dbd9;
    padding: 8px 10px;
    font-size: 17px;
    border-radius: 3px;
    transition: all 0.3 ease;
}

.wrapper #File .form .input_field.TIMER .input{
    width: 60%;
}

.wrapper .form .input_field.success input{
    border-color: #2ecc71;
}

.wrapper #File .form .input_field#timer.success  input{
    border-color: #2ecc71;
    width: 60%;
}

.wrapper .form .input_field.error input{
    border-color: #e74c3c;
}

.wrapper #File .form .input_field#timer.error  input{
    border-color: #e74c3c;
    width: 60%;
}

.wrapper .form .input_field i{
    position: absolute;
    top: 40px;
    right: 10px;
    visibility: hidden;
}

.wrapper #File .form .input_field#timer i{
    position: absolute;
    top: 40px;
    right: 134px;
    visibility: hidden;
}

.wrapper .form .input_field.success i.fa-check-circle{
    color: #2ecc71;
    visibility: visible;
}

.wrapper #File .form .input_field#timer.success i.fa-check-circle{
    color: #2ecc71;
    visibility: visible;
}

.wrapper .form .input_field.error i.fa-exclamation-circle{
    color: #e74c3c;
    visibility: visible;
}

.wrapper #File .form .input_field#timer.error i.fa-exclamation-circle{
    color: #e74c3c;
    visibility: visible;
}

.wrapper .form .input_field small{
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.wrapper .form .input_field.error small{
    visibility: visible;
    color: #e74c3c;
}

.wrapper .form .input_field .custom_select{
    position: relative;
    width: 100%;
    height: 40px;
}

.wrapper .form .input_field .custom_select select{
    appearance: none;
    border: 2px solid #d5dbd9;
    width: 100%;
    height: 100%;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 3px;
    outline: none;
}

.wrapper .form .input_field .custom_select::before{
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 8px solid;
    border-color: #d5dbd9 transparent transparent transparent;
    pointer-events: none;
}

.wrapper .form .input_field .input:hover,
.wrapper .form .input_field select:hover{
    border: 2px solid hsl(200, 60%, 55%);
}

.wrapper .form .input_field p{
    font-size: 16px;
    color: black;
    font-weight: bold;
}

/*ΕΔΩ*/
.wrapper .form .input_field.timer{
    flex-direction: row;
}

.wrapper #File .form .input_field.timer{
    flex-direction: row;
    bottom: 63px;
    left: 63%;
}

.wrapper .form .input_field .check{
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;
}

.wrapper .form .input_field .check input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wrapper .form .input_field .check .checkmark{
    width: 15px;
    height: 15px;
    top: 3px;
    border: 1px solid #78bfdb;
    display: block;
    position: relative;
    
}

.wrapper .form .input_field .check .checkmark::before{  
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 5px;
    height: 2px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
    display: none;
}

.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark{
    background: #78bfdb;
}

.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark::before{
    display: block;
}

.wrapper .form .input_field.file input[type="file"]{
    display: none;
}

/*.wrapper .form .input_field .btn,*/
.wrapper .form .input_field.file label{
    width: 100%;
    padding: 8px 15px;
    font-size: 25px;
    border: 2px solid hsl(200, 100%, 33%);
    background-color: hsl(200, 100%, 40%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    outline: none;
}
/*EDW TO ALLO*/
.wrapper .form .input_field.file{
   position: absolute;
   top: 0%;
   left: 13.5%;
   width: 75%;
}

.wrapper .form .input_field.file label{
    border: 2px solid gray;
    background-color: gray;
}

.wrapper .form .input_field.file label:hover{
    background: hsl(180, 1%, 45%);
 }

.wrapper .form .input_field.file p{
    color: white;
    font-size: 20px;
}

.button{
  background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
  border-radius: 38px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  font-family: "Inter UI","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
  font-size: 26px;
  font-weight: 500;
  height: 4rem;
  width: 100%;
  padding: 0 1.6rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all .5s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: .1s;
}

.wrapper .form .input_field.file label,
.wrapper .form .input_field.file .material-symbols-outlined{
    font-size: 0.97rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .form .input_field:last-child{
    margin-bottom: 0px;
}

.wrapper .form .input_field .btn:hover{
    background: hsl(200, 60%, 50%);
}

/*.wrapper .form .input_field .guide{
    font-size: 15px;
    position: relative;
    bottom: 5px;
}*/

/*@media (max-width:400px){
    .wrapper .form .input_field.file{
        position: absolute;
        bottom: 50%;
        left: 50%;
    }
}*/


