body {
    padding-top: 0;
    margin-top: 0;
}

.form-group {
    position: relative;
}

/* Removido - usando estilo do base-auth.css */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
    margin-right: 1em;
}

.divider:not(:empty)::after {
    margin-left: 1em;
}

/* Estilo para indicar força da senha */
.password-strength {
    height: 4px;
    background: #eee;
    margin-top: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength::before {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: #ff4444;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak::before {
    width: 33%;
    background: #ff4444;
}

.password-strength.medium::before {
    width: 66%;
    background: #ffbb33;
}

.password-strength.strong::before {
    width: 100%;
    background: #00C851;
}