/* Reset Básico e Estilo Geral */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
}

.login-wrapper {
    display: flex;
    align-items: flex-start; /* Alinha ao topo */
    justify-content: center;
    min-height: 100vh;
    padding-top: 50px; /* Reduzido o espaço no topo */
    box-sizing: border-box;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    max-height: 60px; /* Tamanho do logo aumentado */
}

.login-main {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.login-main h1 {
    font-size: 1.8rem;
    font-weight: 600; /* Letra mais grossa */
    text-align: left;
    margin-bottom: 25px;
    color: #343a40;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #495057;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #adb5bd; /* Borda mais grossa e escura */
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, .25);
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
    margin-bottom: 15px;
}

.login-button {
    background-color: #007bff;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-button:hover {
    background-color: #0056b3;
}

.login-button .arrow {
    margin-left: 10px;
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.login-button:hover .arrow {
    transform: translateX(5px);
}

