* {
    box-sizing: border-box;      /*caixa melhorada*/
    font-family: Arial, Helvetica, sans-serif;
}


.content_center {
    width: 100%;
    height: 100%; /*  VAI FICAR AUTOMATICO NAS TELAS HORIZONTAIS */
    max-width: 450px;
    max-height: 600px; /* QUANDO DIMINUIR A TELA TIPO SMARTFONE FICARÁ NO MAXIMO 300px */
    margin: auto;
    padding: 20px;
	padding-top: 70px;
    background-color: rgba(255, 255, 255, 0.877);
    border-radius: 15px;
    
}

.content_center img {
   width: 70%; 
}

.content_center form {
    margin: 20px;
}

.content_center input, .content_center button {
    width: 100%;
    padding: 10px 5px;
    border: none;
    outline: none;
}

.content_center input {
    border-bottom: 2px solid #d48ef7fd;
    margin-bottom: 10px;
}

.content_center input:focus {
    border-bottom-color: #9933CC;
}

.content_center button {
    background-color: #9933CC;
    color: white;
    margin-top: 10px;
}

.content_center button:hover {
    background-color: #9933ccc2;
    color: #660099;
    cursor: pointer;
}

.content_center, .cadastre_center {
    text-align: center;
    margin-top: 10px;
}

.content_center, .esqueceu_center {
    text-align: center;
    margin-top: 5px;
}

a {
    text-decoration: none;      /*TIRAR O Underline*/
    color: #660099;            /*cor roxo forte*/
}

a:hover {
    text-decoration: underline;     /*AO PASSAR O MOUSE APARECER O Underline*/
    color: #9933CC;                  /*cor roxo leve ao colocar o mouse*/
}

.user {   /*usuarios no chekbox*/
    display: flex;
    width: 150px;
}