/* Estilos customizados */
body {
    font-family: 'Roboto', sans-serif;
    background: #04c0e2;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.card-body {
    padding: 2rem;
}

.logo {
    max-width: 200px; /* Tamanho máximo para o logo */
    height: auto;
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: #04c0e2;
    border: none;
    border-radius: 1rem;
    padding: 0.75rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: black;
}

.text-center a {
    color: #04c0e2;
    text-decoration: none;
    font-size: 0.9rem;
}

.text-center a:hover {
    text-decoration: underline;
}

.error-message {
    font-size: 0.875rem;
    color: #e74c3c;
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 400px;
    width: 100%;
}