/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
  --white: #fff;
  --gray: #4d5959;
  --primary: #00a1e4;
  --red: #cc0000;
  --lightgray: #bbb;
}

/**
 *
 * Layout
 *
 */
.alr-container {
  width: 100%;
  max-width: 640px;
}

.alr-form_group {
  margin-bottom: 36px;
}

.alr-title {
  margin-bottom: 40px;
  margin-top: 0;
  line-height: 1;
}

.alr-subtitle {
  padding-bottom: 12px;
  line-height: 1;
  font-weight: 300;
  font-size: 20px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--lightgray);
}

/**
 *
 * Formulario
 *
 */

.alr-content {
  position: relative;
}

.alr-box-container{
  display: flex; 
  width: 100%; 
  justify-content: 
  space-between; 
  align-items: flex-start;
}

.alr-left-side{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alr-form {
  position: relative;
  z-index: 1;
  color: var(--gray);
}

.alr-form label.error,
.alr-input_error {
  font-size: 12px;
  color: var(--red);
}

.alr-loading {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.75);
  background-repeat: no-repeat;
  background-position: 50px center;
}

.alr-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.alr-required {
  color: var(--red);
  font-size: 18px;
  vertical-align: text-bottom;
}

.alr-form_row {
  margin-bottom: 16px;
}

.alr-input_text {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  max-height: 32px;
  line-height: 32px;
}

.alr-input_textarea {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  resize: none;
  overflow-y: auto;
  height: auto;
  padding: 15px;
}

.alr-input_file {
  border: 0 !important;
  padding: 0 !important;
  width: 100%;
  display: block;
  height: auto !important;
}

.alr-input_select {
  border: 1px solid var(--lightgray) !important;
  width: 100%;
  display: block;
  max-height: 32px;
}

input:not([type=submit]):not([type=checkbox]), textarea, select{
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
  height: 40px;
  padding: 0 15px;
  outline: 0;
}

.alr-input_btn {
}

.alr-response_btn {
  cursor: pointer;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 30px;
  background: #e0b933;
  color: #fff;
  border-radius: 0;
  height: 40px;
  line-height: 1;
}
.alr-response_btn:hover{
  color: #06467c;
}

.alr-response_title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}

.alr-form_verysmall {
  font-size: 12px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0;
}

.alr-form_disclaimer p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .alr-box-container {
    flex-direction: column;
  }

  .alr-box1 {
    order: -1; /* Div 1 pasa arriba */
    margin-bottom: 20px;
  }
}
