*
{
	/* A universal CSS reset */
	margin:0;
    padding:0;
    font-family: 'Ubuntu', sans-serif;
}
body
{
    background: white;
    width: 99vw;
    height: 100vh;
    display: flex;
    flex-flow: column;
    
}
.header
{
    display: flex;
    justify-content: space-around;
    -webkit-text-fill-color: rgb(161, 202, 64);
    width: 80vw;
    height: 10vh;
    align-self: center;
    align-items: center;
}
.box
{
    display: flex;
    justify-content: space-around;

}
#thebx
{
    display: flex;
    background: white;
    width: 80vw;
    margin-top: 5vh;
    flex-flow: column wrap;
    align-self: center;
    align-items: center;  
    border-radius: 5px;
    border: 5px solid transparent;
    -moz-border-image: -moz-linear-gradient(top left, rgb(161, 202, 64) 0%, rgb(111, 134, 62) 100%);
    -webkit-border-image: -webkit-linear-gradient(top left, rgb(161, 202, 64) 0%, rgb(111, 134, 62) 100%);
    border-image: linear-gradient(to bottom right, rgb(161, 214, 64) 0%, rgb(111, 134, 62) 100%);
    border-image-slice: 1;
}
input{
    text-align: center;
    display: flex;
    align-self: center;
    box-sizing: border-box;
    border: 1px solid #A1CA40;
    border-radius: 5px;
    //color:#A1CA40;
    -webkit-transition: width 1s ease-in-out;
    transition: Width 0.1s ease-in-out;
}
input[type=submit] {
  width: 100%;
  background-color: #A1CA40;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #A1CA40;
}
input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #A1CA40;
  border-radius: 5px;
  box-sizing: border-box;
}
input[type=email], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #A1CA40;
  border-radius: 5px;
  box-sizing: border-box;
}
input[type=tel], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #A1CA40;
  border-radius: 5px;
  box-sizing: border-box;
}
input[type=file], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  background-color: #A1CA40
  border: 1px solid #A1CA40;
  border-radius: 5px;
  box-sizing: border-box;
}
