*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Raleway', sans-serif;
}

.main-wrapper{
    display: grid;
    max-width:70vw;
    grid-template-columns:60% 1fr;
    margin: auto;
    margin-top:05%;
    justify-content: center;
}

.form-title{
    text-align:justify;
    color:  #009688;
    font-size:48px;
    font-weight:300;
    padding:10px 30px;
}

.form-container{
    display: flex;
    width:100%;
    height: 100%;
    max-width:600px;
    margin: auto;
    align-self: center;
}

.new-client-img{
    width:100%;
    max-width:600px;
    margin: auto;
}

.new-client-img img{
    width:100%;
}

.inputs-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
    padding:20px 30px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

input{
    border: none;
    border-bottom: 1.3px solid #009688;
    padding: 15px 15px 19px 0px;
    font-size:15px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 15px;
    background: transparent;

}

.third-input{
    width:32%;
}

.half-input{
    width:49%;
}

.wide-input{
    width: 100%;
}

.register-btn-wrapper{
    display: flex;
    justify-content:flex-end;
    padding:0px 30px;
}

.modify-btn-wrapper{
    display: flex;
    justify-content:flex-end;
    padding:0px 30px;
}



.register-btn{
    font-size:16px;
    font-family: 'Raleway', sans-serif;
    border-radius:7px;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #009688  0%, #3583a7 100%);
    color: white;
    border: none;
    cursor:pointer;
    padding:15px;
}

.cancel-btn{
    margin-right:8px ;
    background: linear-gradient(180deg, #009687bb  0%, #3583a7b7 100%);
}

.register-btn:hover{
    box-shadow: 2px 4px 4px rgba(95, 74, 74, 0.15);
}



/* Estilos Barra de busqueda*/

.search-box-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}

.search-box{
    width: 90%;
    height: 50px;
    padding: 15px 30px;
    border: 1.2px solid #009688;
    font-weight:400;
    border-radius: 7px 0px 0px 7px;
}

.searchbtn{
    background: linear-gradient(180deg, #009688  0%, #3583a7 100%);
    width: 10%;
    position: relative;
    height: 50px;
    border-radius: 0px 7px 7px 0px;
}

.buscar-cliente{
    color: #ffff;
    font-size:18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

/*Estilos Tabla */
table {
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
  }

  th{
      background: #009688;
      color: #ffff;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }

/*Responsive*/

@media screen and (max-width:1300px){
    .main-wrapper{
        max-width:92vw;
        grid-template-columns:1fr;
        grid-template-rows:1fr 1fr ;
    }
    .new-client-img{
        width:100%;
        max-width:600px;
        margin: inherit;
        padding: 20px 30px;
    }
   
}


@media screen and (max-width:900px){
    .third-input{
        width: 100%;
    }
    
    .half-input{
        width: 100%;
    }
    
    .wide-input{
        width: 100%;
    }
}