
.registro-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .registro-container {
        grid-template-columns: 3fr 2fr;
        align-items: start;
    }
}

.registro-card {
    background-color: #1E2130;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #4B5563;
    padding: 1.5rem;
}

.registro-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.registro-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.registro-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registro-input {
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #4B5563;
    background-color: #2A2D3E;
    color: white;
    font-size: 1rem;
}

.registro-input:focus {
    border-color: #3B82F6;
    outline: none;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.checkbox-group a {
    color: #3B82F6;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #60A5FA;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.registro-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9CA3AF;
}

.registro-footer a {
    color: #3B82F6;
    font-weight: 500;
}

.registro-footer a:hover {
    text-decoration: underline;
}

/* Cards de informação */
.registro-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background-color: #1E2130;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #4B5563;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #3B82F6;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #3B82F6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.info-card:nth-child(2) .info-icon {
    background-color: #F59E0B;
}

.info-card:nth-child(3) .info-icon {
    background-color: #34D399;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}