.rc__main{
  max-width: 1114px;
  width: 90%;
  display: grid;
  margin: 1.5rem auto;
}
.rc__main-title{
  color: var(--color-texto-verde);
  max-width: 1000px;
  width: 100%;
  text-wrap: pretty;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}
.rc__form{
  background-color: var(--color-gris-fondo);
  padding: 1.5rem 1rem;
  color: var(--color-texto-gris);
}
.rc__form-section{
  display: flex;
  flex-direction: column;
}
.rc__form-labelh{
  display: flex;
  padding: .5rem 0;
  width: 100%;
}
.rc__form-required::after{
  content: '*';
  color: brown;
  font-size: 1.5rem;
}
.rc__form-input{
  width: 100%;
  padding: .5rem;
  border: 1px solid var(--color-input-gris);
  color: var(--color-texto-gris);
  outline: none;
}
.rc__form-subtitle{
  color: var(--color-texto-verde);
  border-bottom: 1px solid var(--color-texto-verde);
  font-size: 1.5rem;
  padding-top: 1rem;
}
.rc__subcontent-div{
  display: flex;
  gap: 1rem
}
.rc__form-labelv{
  display: flex;
  flex-direction: column;
}
.rc__form-subcontent{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rc__label-title{
  padding: .6rem 0 .5rem;
}
.rc__schedule-wrapper{
  margin: 1rem auto;
  padding: .5rem 1rem;
  background-color: var(--color-gris-dashboard);
}
.rc__days-wrapper{
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.rc__days-day{
  display: flex;
  flex-direction: column;
}
.rc__schedule-input{
  width: 20px;
  height: 20px;
}
.rc_flex-column{
  flex-direction: column;
}
.rc__flex-auto{
  flex-direction: row;
}
.rc__positions{
  display: flex;
  flex-wrap: wrap;
  max-width: 40rem;
  gap: 1rem;
}
.rc__positions-label{
  min-width: 9rem;
  display: flex;
  align-items: center;
}
.rc__width-full{
  width: 100%;
}
.rc__textarea{
  width: auto;
  min-height: 5rem;
  outline: none;
  border: 1px solid var(--color-input-gris);
}
.rc__element-margin{
  margin: 1.5rem 0;
}
.rc__message-required{
  margin: 1rem 0;
  color: brown;
  span{
    font-weight: bold;
    font-size: 1.2em;
  }
}
#otro_cargo_label{
  display: none;
}
.rc__form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 2rem;
}
.rc__grid-labelh{
  width: 90%;
  display: flex;
  flex-direction: column;
}
.rc__grid-labelh input[type='text'],
.rc__grid-labelh input[type='number']{
  width: 90%;
}
@media (max-width: 768px) {
  .rc__subcontent-div{
    display: block;
  }
  .rc__form-grid{
    display: block;
    margin-bottom: 0;
  }
  .rc__grid-labelh{
    width: 100%;
  }
  .rc__grid-labelh input[type='text'],
  .rc__grid-labelh input[type='number']{
    width: 100%;
  }
}
.rc__form-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.2s ease;
}

.rc__form-header {
  background: #003057;
  padding: 1.6rem 2rem;
  color: white;
}

.rc__form-header h1 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 0.35rem;
}

.rc__form-header .rc__version {
  font-size: 0.85rem;
  opacity: 0.8;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 40px;
  margin-top: 0.5rem;
}

.rc__form-body {
  padding: 2rem 2rem 2.2rem;
}

.rc__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.rc__full-width {
  grid-column: span 2;
}

.rc__form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rc__form-grid label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e4663;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rc__required-star {
  color: #d9534f;
  font-size: 1.1rem;
}

.rc__form-grid input, .rc__form-grid select, .rc__form-grid textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #cad2db;
  border-radius: .5rem;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.2s;
  outline: none;
  color: #1a2c3e;
}

.rc__form-grid input:focus, .rc__form-grid select:focus, .rc__form-grid textarea:focus {
  border-color: #2c7cb6;
  box-shadow: 0 0 0 3px rgba(44,124,182,0.2);
}

.rc__form-grid textarea {
  resize: vertical;
  min-height: 80px;
}

.rc__radio-group, .rc__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: #f9fafc;
  padding: 0.6rem 1rem;
  border-radius: .5rem;
  border: 1px solid #e2e8f0;
}

.rc__radio-option, .rc__checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  font-size: 0.9rem;
}

.rc__radio-option input, .rc__checkbox-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #003057;
}

.rc__hint {
  font-size: 0.75rem;
  color: #6c7a89;
  margin-top: 0.2rem;
}

.rc__form-grid hr {
  margin: 1.5rem 0;
  border: none;
  height: 1px;
  background: #e2edf2;
}

.rc__submit-section {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.rc__btn {
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.rc__btn-primary {
  background: #003057;
  color: white;
  box-shadow: 0 2px 6px rgba(0,48,87,0.2);
}

.rc__btn-primary:hover {
  background: #0a4b78;
  transform: translateY(-1px);
}

.rc__btn-secondary {
  background: #eef2f7;
  color: #2c3e50;
  border: 1px solid #cbdbe2;
}

.rc__btn-secondary:hover {
  background: #e2e8f0;
}

.rc__success-message {
  background: #dff0e6;
  color: #146b3a;
  padding: 1rem 1.5rem;
  border-radius: 28px;
  margin-bottom: 1.8rem;
  border-left: 6px solid #2b7a4b;
  font-weight: 500;
  display: none;
}

.rc__error-msg {
  color: #c0392b;
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

@media (max-width: 700px) {
  .rc__form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .rc__full-width {
    grid-column: span 1;
  }
  .rc__form-body {
    padding: 1.5rem;
  }
  .rc__radio-group {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.rc__info-badge {
  background: #f0f6fa;
  border-radius: 20px;
  padding: 0.2rem 0.9rem;
  font-size: 0.7rem;
  font-weight: normal;
  color: #2c7cb6;
}

.rc__footer {
  background: #f8fafd;
  border-top: 1px solid #e2edf2;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  color: #5e727f;
  text-align: center;
}