@charset "UTF-8";

* {
  box-sizing: border-box;
}

html{
  width:100vw;
  height:100vh;
  overflow-x: hidden;
  font-family: "Arial Narrow", "Lucida Sans", sans-serif;
}

body{
  background-color: #e4e2f5;
  margin: 0;
  padding: 0;
  width: 100%;
  height:100%;
  display: flex;
}

h1{
  font-size: 24px;
}
h2{
    font-size:18px;
  }
h3{
  font-size: 14px;
}

div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;
}

input[type=checkbox].del{
  width:30px;
  height:30px;
  font-family: "Poppins";
  font-size:12px;
  padding-left:0px;
  text-align: left !important;
  align-content: left;
}

input[type=email]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
select,option{
  font-family: "Tahoma","Poppins";
  width:232px;
  height:35px;
  font-size:14px;
  border:none;
}

input[type=text]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=password]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=number]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}
input[type=date]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}

input[type=tel]{
  width:250px;
  height:35px;
  font-size:14px;
  font-weight:bold;
  border:none;
  text-align: left;
  padding-left:10px;
}

input[type=submit]{
  width:232px;
  height:35px;
  background-color:#495ce8;
  background-color:#3d5af1;
  color:white;
  font-size:14px;
  font-weight:bold;
  border:none;
  transition: 0.5s;
}


input[type=submit]:hover{
  width:232px;
  height:35px;
  background-color:white;
  color:#495ce8;
  font-size:14px;
  font-weight:bold;
  border:none;
  cursor: pointer;
  border-radius: 10px;
}

button{
  width:232px;
  height:35px;
  background-color:#495ce8;
  background-color:#3d5af1;
  color:white;
  font-size:14px;
  font-weight:bold;
  border:none;
  transition: 0.5s;
}

button:hover{
  width:232px;
  height:35px;
  background-color:white;
  color:#495ce8;
  font-size:14px;
  font-weight:bold;
  border:none;
  cursor: pointer;
  border-radius: 10px;
}

.material-symbols-outlined
{
    /* color:white; */
    text-align:right;
    vertical-align: middle;
}





.container{
  width: 100vw;
  align-items: top;
  align-content: top;
  gap: 1em;
  float: center;
  margin-left:auto;
  margin-right:auto;
}


@media only screen and (max-width: 600px) {
  .maincontainer{
    margin-left:0px;
    margin-top:20px;
  }
}


.vertical-center {
margin: 0;
position: absolute;
}


option{
  cursor:pointer;
}