/* Estilo básico do body */
body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    background-image: url('background.png');
    background-size: cover;
    background-position: center; 
    background-attachment: fixed; 
}

/* Estilo do container principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(0, 195, 165);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    color: rgb(249, 250, 250);
}

header p {
    font-size: 1rem;
    color: rgb(2, 10, 20);
}

header i {
    margin-right: 5px;
    color: rgb(11, 24, 22);
}

.g_id_signin:hover {
    background-color: rgb(22, 98, 198);
}

