/* Form styles for FURA website */



.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
    
    
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-label {
    position: absolute;
    align-items: center;
    left: 15px;
    top: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-field {
    width: 100%;
    padding: 25px 15px 10px;
    border: 1px solid #DDD;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.input-field:focus {
    border-color: var(--primary-color);
    outline: none;
}

.date-input {
    display: flex;
    align-items: center;
}

.date-input .input-field {
    flex: 1;
}

.date-input .calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Form containers */
.form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: var(--box-shadow);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-footer p {
    margin-top: 15px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Detail items for ride details */
.detail-row {
    display: flex;
    margin-bottom: 15px;
}

.detail-label {
    font-weight: 600;
    width: 150px;
    color: var(--text-light);
}

.detail-value {
    flex: 1;
}
/* Phone input styles */
.phone-input-container {
    display: flex;
    width: 100%;
  }
  
  .country-code-selector {
    position: relative;
    min-width: 100px;
  }
  
  .selected-country {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 25px 10px 10px;
    border: 1px solid #DDD;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: #f5f5f5;
    cursor: pointer;
  }
  
  .selected-country svg {
    margin-left: 5px;
    transition: transform 0.3s;
  }
  
  .country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    max-height: 300px;
    background-color: white;
    border: 1px solid #DDD;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    overflow: hidden;
  }
  
  .country-dropdown.show {
    display: block;
  }
  
  .country-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .country-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .country-list {
    max-height: 240px;
    overflow-y: auto;
  }
  
  .country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .country-option:hover {
    background-color: #f5f5f5;
  }
  
  .country-option.selected {
    background-color: #e3eeff;
  }
  
  .country-name {
    flex: 1;
  }
  
  .phone-number {
    flex: 1;
    border-radius: 0 var(--border-radius) var(--border-radius) 0 !important;
    border-left: none !important;
  }
  
  .selected-country.opened svg {
    transform: rotate(180deg);
  }