body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Barra de progresso no topo da página */
.progress-container {
    width: 100%;
    height: 4px;
    background: #f3f3f3;
    position: fixed;
    top: 0;
    left: 0;
    display: none; /* Oculto inicialmente */
}

.progress-bar {
    height: 4px;
    background: #4285f4; /* Azul dos ícones */
    width: 0%;
}

/* Estilo para containers de cartões */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    margin: 20px;
}

/* Estilo para os cartões */
.card {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
    color: inherit;
    text-decoration: none; /* Adiciona esta linha */
}

.card:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

.card:hover h3,
.card:hover p,
.card:hover i {
    text-decoration: none; /* Adiciona esta linha */
}

.card i {
    font-size: 48px;
    color: #4285f4; /* Azul dos ícones */
    margin-bottom: 10px;
}

.card h3 {
    margin: 10px 0;
    font-size: 24px;
    color: #333;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card a {
    text-decoration: none;
    color: inherit;
}

.card a:hover,
.card a:focus,
.card a:active {
    text-decoration: none;
    color: inherit;
}





/* Responsividade para cartões */
@media (max-width: 768px) {
    .card {
        margin: 10px 0;
        width: 100%;
    }
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.material-icons {
    font-size: 48px;
    margin-bottom: 10px;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #007bff;
}

@media (min-width: 576px) {
    .card-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Estilo para containers de formulários */
.form-container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.icon-container {
    text-align: center;
    margin-bottom: 10px;
}

.icon-container i {
    font-size: 48px;
    color: #4285f4; /* Azul dos ícones */
}

/* Estilo para grupos de formulário */
.form-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

.form-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #4285f4; /* Azul dos ícones */
}

.form-group input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input:focus {
    border-color: #4285f4;
    outline: none;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group label i {
    margin-right: 10px;
}

.form-group .helper-text {
    text-align: left;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Estilo para botões */
.btn-google {
    background-color: #4285f4;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-google:hover {
    background-color: #357ae8;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Estilo para mensagens de erro */
.alert {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f44336; /* Vermelho Google */
    color: white;
    border-radius: 20px;
    margin-top: 10px;
}

.alert i {
    margin-right: 10px;
}

.alert-success {
    background-color: #4caf50; /* Verde Google */
}

.alert-success i {
    color: #ffffff;
}

.alert-danger i {
    color: #ffffff;
}

/* Estilo para mensagens de erro */
.message.error {
    color: red;
    margin-top: 10px;
}

/* Estilo para containers de recuperação de senha */
.forgot-password-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.forgot-password-container h3 {
    margin-bottom: 20px;
    color: #333;
}

.forgot-password-container p {
    margin-bottom: 20px;
    color: #666;
}

.forgot-password-container .form-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

.forgot-password-container .form-group .input-group {
    display: flex;
    align-items: center;
}

.forgot-password-container .form-group .input-group-prepend {
    margin-right: -1px;
}

.forgot-password-container .form-group .input-group-text {
    background-color: #fff;
    border: 1px solid #ccc;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 10px;
}

.forgot-password-container .form-group input {
    border-radius: 0 4px 4px 0;
}

.forgot-password-container .form-group input:focus {
    border-color: #4285f4;
    outline: none;
}

.forgot-password-container .form-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.forgot-password-container .form-group label i {
    margin-right: 10px;
}

.forgot-password-container .form-group .helper-text {
    text-align: left;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-control {
    border-radius: 0 4px 4px 0;
}

.input-group .form-control:focus {
    border-color: #4285f4;
    box-shadow: none;
}


