body {
    background: #0f172a;
}

.registro-card {
    width: 420px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.step {
    cursor: pointer;
    text-align: center;
}

.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ccc;
    color: white;
    margin: auto;
    font-weight: bold;
}

.step.active span {
    background: #1e3a8a;
}

.line {
    width: 60px;
    height: 3px;
    background: #ccc;
    margin: 0 10px;
}

.password-rules {
    font-size: 14px;
    margin-top: 10px;
}

.password-rules p {
    color: red;
    margin: 2px;
}

.valid {
    color: green !important;
}