body {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.login-container {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 350px;
    width: 100%;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.login-form h2 {
    text-align: center;
    color: #101828;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group label {
    color: #101828;
    font-size: 0.97rem;
    font-weight: 500;
}

.input-group input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #c5c7ca;
    outline: none;
    font-size: 1rem;
    background: rgba(255,255,255,0.25);
    color: #101828;
    transition: box-shadow 0.2s, background 0.2s, border 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.input-group input:focus {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.09);
}

button[type="submit"] {
    margin-top: 10px;
    background: linear-gradient(90deg, #f6a01c 0%, #f6a01c 100%);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.09rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(246,160,28,0.14);
    transition: background 0.2s, transform 0.2s;
}

button[type="submit"]:hover {
    background: #939393;
    transform: translateY(-2px) scale(1.03);
}

.img-logo-login {
    text-align: center;
}
    
/* Estilo para o grupo de senha */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

/* Estilo para o container do input de senha */
.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

/* Estilo para o input de senha */
#senha {
    padding-right: 40px; /* Espaço para o botão de mostrar senha */
    width: 100%;
}

/* Estilo para o botão de mostrar/esconder senha */
.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.toggle-password:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.toggle-password:active {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Estilo para o link "esqueceu a senha" */
.forgot-password {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #f6a01c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.forgot-password a:hover {
    color: #e09117;
    text-decoration: underline;
}