@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    border: 0;
}

form {
	/* 
		display: flex;
		flex-direction: column;
	*/
}


.input-field {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

form .input-field:first-child {

    margin-bottom: 1.5rem;
   
}

.input-field .underline::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.input-field .underline::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg,#4776E6, #4776E6);
    transform: scaleX(0);
    transition: all .3s ease-in-out;
    transform-origin: left;
}

.input-field input:focus ~ .underline::after {
    transform: scaleX(1);
}

/* entrada de dados - digitado pelo usuário */
.input-field input {
    outline: none;
    /* font-size: 0.9rem; */
    font-size: 22px;
	font-family: arial;
	color: #ffa027;
/*    color: rgba(0, 0, 0, 0.7); */
    width: 100%;   
}

.input-field input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

form input[type="submit"] {
    margin-top: 2rem;
    padding: 0.4rem;
    width: 350px;
    background: linear-gradient(to left, #ffa027, #ffa027);
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* efeito hover do botão submit  E n t r a r*/
form input[type="submit"]:hover {
    letter-spacing: 2.0px;
    background: linear-gradient(to right, #4776E6, #4776E6);
  /* negrito
    font-weight: 600;
  */
}

.aviso {
    font-weight: 500;
    font-size: 18px;
    color:#5c5757;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative; 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

   }

.botao-inicio {
    display: inline-block;
    margin: 0.1em;
    border: 0;
    padding: 0.5em 0.8em;
    text-decoration: none;
    color: #FFA027;
    font-weight:bold;
    background: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    border-radius: 0.3em;
    box-shadow: 1px 1px 0 1px #930;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    -moz-osx-font-smoothing: grayscale;
}
.botao-inicio:hover {
    color: #FFA027;
    background: #FFF;
    box-shadow: 0 0 0 0 #930,
                inset 2px 2px 2px #930;
    transform: translate(3px, 3px);
    text-decoration: none;
}

.botao-inicio:active {
    color: #FFA027;
    background: #FFF;
    box-shadow: 0 0 0 0 #930,
                inset 2px 2px 2px #930;
    transform: translate(3px, 3px);
    text-decoration: none;
}
	
.style6 {font-family: Arial, Helvetica, sans-serif; font-size: 26px; color: #FFFFFF}

.caixa {
position: relative;
    width: 50px;
  /*  background: rgba(51, 51, 51, 0.27); */
  background: white;
    border-radius: 16px;
    border: 1px solid #ffffff;
	margin-top: 0px;
    /* padding: 30px 135px;*/
    padding: 10px 20px;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 20px;
    color: #FFFFFF;
}
 	
.botao-inicio {
			display: inline-block;
			margin: 0.6em;
            border: 0;
            padding: 0.5em 0.8em;
			text-decoration: none;
            color: #FFA027;
            font-weight:bold;
			background: #fff;
			text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
			border-radius: 0.3em;
			box-shadow: 1px 1px 0 1px #930;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            -moz-osx-font-smoothing: grayscale;
}

.botao-inicio:hover {
			color: #FFA027;
			background: #FFF;
			box-shadow: 0 0 0 0 #930,
						inset 2px 2px 2px #930;
			transform: translate(3px, 3px);
			text-decoration: none;
}
        
.botao-inicio:active {
			color: #FFA027;
			background: #FFF;
			box-shadow: 0 0 0 0 #930,
						inset 2px 2px 2px #930;
			transform: translate(3px, 3px);
			text-decoration: none;
}