/* Estilos para a página de registro */
.register-container {
    max-width: 900px;
    margin: 0 auto;
}

.auth-card {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Estilos para os cards de planos */
.plan-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.plan-card:hover {
    border-color: #6366F1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
}

.plan-card.selected {
    border-color: #6366F1;
    background-color: rgba(99, 102, 241, 0.05);
}

.plan-header {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.plan-body {
    padding: 15px;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6366F1;
}

.plan-period {
    font-size: 0.9rem;
    color: #6c757d;
}

.plan-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.plan-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: #6366F1;
    margin-right: 8px;
}

.plan-features li.not-included {
    color: #adb5bd;
}

.plan-features li.not-included i {
    color: #dee2e6;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #6366F1;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 0 8px 0 8px;
}

/* Opção de trial */
.trial-option {
    background-color: #f0f8ff;
    border: 2px dashed #6366F1;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trial-option:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.trial-option.selected {
    background-color: rgba(99, 102, 241, 0.15);
    border-style: solid;
}

/* Indicador de passos */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    position: relative;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #dee2e6;
}

.step.active {
    font-weight: 600;
    color: #6366F1;
}

.step.active:not(:last-child):after {
    background-color: #6366F1;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #6366F1;
    color: white;
}

/* Containers de formulário e planos */
.register-form-container, .plans-container {
    transition: all 0.3s ease;
}

/* Botões de navegação */
.btn-next, .btn-prev {
    min-width: 120px;
} 