* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Commuters Sans, sans-serif;
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    color: #081c0e;
    font-size: 32px;
    margin-bottom: 20px;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #00558c;
    color: #00558c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.step p {
    margin-top: 5px;
    font-size: 14px;
    color: #081c0e;
}

.line {
    height: 2px;
    flex-grow: 1;
    background-color: #dcdcdc;
}

.line.active {
    height: 2px;
    flex-grow: 1;
    background-color: #006eff;
}

.step.active .circle {
    background-color: #00558c;
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
}

form input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    padding: 10px;
    background-color: #00558c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

form button:hover {
    background-color: #003d70;
}




.success-container {
    text-align: center;
    display: flex;               /* Adiciona flexbox ao container */
    flex-direction: column;      /* Organiza os filhos em uma coluna */
    justify-content: center;     /* Centraliza os filhos verticalmente */
    align-items: center;         /* Centraliza os filhos horizontalmente */
    width: 100%;                 /* Opcional: garante que o container ocupe a largura total */
}

.success-title {
    color: #0A518C;
    margin-bottom: 20px;
}

.success-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.success-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #0A518C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0A518C;
    margin-bottom: 5px;
}

.success-line {
    width: 40px;
    height: 2px;
    background-color: #0A518C;
}

.success-step.active .success-circle {
    background-color: #0A518C;
    color: #fff;
}

.success-message {
    color: #0A518C;
    margin-top: 20px;
    margin-bottom: 30px;
}

.success-image {
    width: 280px;
    margin-bottom: 30px;
}

.success-button {
    background-color: #0A518C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.success-button:hover {
    background-color: #ffffff;
}



.input-group {
    position: relative;
    margin-bottom: 5px;
}

input[type="nome"],
input[type="password"],
input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 12px 12px 12px 10px; /* Espaçamento extra à direita para o ícone */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 1.5;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    width: 30px; /* Largura do botão */
    height: 30px; /* Altura do botão */
    padding: 0; /* Remove qualquer padding */
    background-image: url('../img/semvisu.png'); /* Ícone de cadeado trancado por padrão */
}

.toggle-password.active {
    background-image: url('../img/olho.png'); /* Ícone de cadeado destrancado */
}



