body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    font-family: "roboto";
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.container {
    background-color: black;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 5px;
    width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 10px;
    align-items: center;
    text-align: center;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input {
    width: 92%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    color: black;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.form-group button {
    padding: 8px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: rgb(61, 61, 61);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


.form-group input[value="ENTRAR"] {
    width: 40%;
    background-color: #1599D3;
    color: white;
}

.form-group input[value="recuperar senha"] {
    width: 40%;
    background-color: #005275;
    color: white;
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: silver;
    text-decoration: none;
}

a:hover {
    color: gray;
    text-decoration: underline;
}

a:active {
    color: #00ff00;
    text-decoration: underline;
    background-color: #000000;
}

.linhaComTexto {
    width: 100%;
    height: 7px;
    border-bottom: 1px solid white;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 15px;
}

.linhaComTexto>span {
    font-size: 16px;
    background-color: #EEA501;
    color: white;
    padding: 0 10px;
}

.divGoogle1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.divGoogle2 {
    display: flex; 
    align-items: center;
    padding: 5px 10px; 
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    cursor: pointer; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.imgGoogle {
    width:18px;
    height:18px;
    margin-right: 10px;
}

.fontGoogle {
    font-family: Roboto, sans-serif; 
    font-size: 14px; 
    color: #555;
}