@import 'https://fonts.googleapis.com/css?family=Ubuntu:300, 400, 500, 700';

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

body {
  align-items: center;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  justify-content: center;
	font-family: 'Ubuntu', sans-serif;
}

login-wrap 
{
  position: relative;
  height: 1200px; 
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); }
  .login-wrap h3 {
    font-weight: 700;
    font-size: 20px;
    color: #333399; }
  .login-wrap .icon {
    width: 80px;
    height: 80px;
    background: #333399;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto;
    margin-bottom: 5px; }
    .login-wrap .icon span {
      color: #fff; }
.heading-section {
  font-size: 28px;
  color: #000;
  align: center;
  padding-top: 60vw;
  padding-bottom: 5vw;
  text-align: center;
}}
h1 {
  color: #666;
}

form {
  background: #38B2AC;
  border-radius: 5px;
  box-shadow: 0 1px 2px #ccc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 10px;
  padding: 20px;
	font-weight: 200;
}
fieldset {
    display: block;
	margin: 20px;
    margin-inline-start: 6px;
    margin-inline-end: 2px;
    padding-block-start: 0.50em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em;
    min-inline-size: min-content;
    border-width: 0px;
    border-style: groove;
    border-color: rgb(192, 192, 192);
    border-image: initial;
}
fieldset.plano
{
	display: inline;
}
input, textarea, button {
  background-color: #f7f7f7;
  border: none;
  border-radius: 5px;
  color: #777;
  font-size: 18px;
  outline: none;
  padding: 15px;
  width: 100%;
}
 label {
  font-size: 18px;
line-height: 2;
  width: 100%;
	 margin-bottom: 0.5rem;
}
select {
	font-size: 18px;
	width: 600px;
	   padding-top: 0.5vw;
	 margin-top:1.5rem;
	border-radius: 5px 5px 5px 5px;
}

button {
  color: #777;
  cursor: pointer;
  font-weight: bold;
}