


@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
}
.container{
        max-width: 1000px;
        background: #fff;
        width: 1000px;
        padding: 25px 40px 10px 40px;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.container .text{
    text-align: center;
    font-size: 41px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



form {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;

}

table, th, td {
    border: 2px solid #ddd;
}

th, td {
    width: 50px;
    padding: 15px;
    padding-left: 50px;
    text-align: left;
}

#targetSalaryForm #ratesForm #employeeForm #app{
    text-align: center;
}
#targetSalaryForm label{
    margin-right: 30px;
}
#targetSalaryForm input{
    width: 500px;
    height: 40px;
    padding: 10px 35px;
    margin-top: 50px;
    margin-bottom: 20px;
    border: none;
    border-bottom: solid 2px rgb(194, 194, 194);
}

#targetSalaryForm input:hover{
    border-bottom: solid 2px rgb(209, 209, 209);
    background-color: rgb(238, 238, 238, 0.3);
    transition: 1s;

}

#targetSalaryForm input:focus{
    border-bottom: solid 2px rgb(0, 0, 0);
    transition: .4s;

}


#ratesForm label{
    margin-right: 10px;
}
#ratesForm input{
    width: 150px;
    height: 40px;
    padding: 10px 35px;
    margin-top: 50px;
    margin-bottom: 20px;
    border: none;
    border-bottom: solid 2px rgb(194, 194, 194);
}

#ratesForm input:hover{
    border-bottom: solid 2px rgb(209, 209, 209);
    background-color: rgb(238, 238, 238, 0.3);
    transition: 1s;

}

#ratesForm input:focus{
    border-bottom: solid 2px rgb(0, 0, 0);
    transition: .4s;

}







#employeeForm label{
    margin-right: 30px;
}
#employeeForm input{
    width: 250px;
    height: 40px;
    padding: 10px 35px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-right: 20px;
    border: none;
    border-bottom: solid 2px rgb(194, 194, 194);
}

#employeeForm input:hover{
    border-bottom: solid 2px rgb(209, 209, 209);
    background-color: rgb(238, 238, 238, 0.3);
    transition: 1s;

}

#employeeForm input:focus{
    border-bottom: solid 2px rgb(0, 0, 0);
    transition: .4s;

}
/*
#targetSalaryForm .btn {
    width: 150px;
    padding: 10px;
    margin-left: 30px;
    background: linear-gradient(120deg, #56d8e4 30%, #9f01ea 70%);
    border: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    
}

*/

.button {
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(120deg, #56d8e4 30%, #9f01ea 70%);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin-left: 30px;
}
.button:hover{
    background: linear-gradient(320deg, #56d8e4 30%, #9f01ea 70%);
    
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    }
    
.button span:after {
    content: '\00AB';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
    }
    
.button:hover span {
    padding-left: 25px;
    }
    
.button:hover span:after {
    opacity: 1;
    left: 0;
}






.buttontaux {
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(120deg, #56d8e4 30%, #9f01ea 70%);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    width: 240px;
    transition: all 0.5s;
    cursor: pointer;
    margin-left: 30px;
}
.buttontaux:hover{
    background: linear-gradient(320deg, #56d8e4 30%, #9f01ea 70%);
    
}

.buttontaux span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    }
    
.buttontaux span:after {
    content: '\00AB';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
    }
    
.buttontaux:hover span {
    padding-left: 25px;
    }
    
.buttontaux:hover span:after {
    opacity: 1;
    left: 0;
}





