@charset "utf-8";

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px 15px;
}

.apply-container {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 50px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
}

.form-group label {
  width: 150px;
  padding-top: 8px;
  font-weight: bold;
  text-align: left;
  font-size: 16px;
}

.form-control {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.width200 {
  width: 200px !important;
}

.form-desc {
  font-size: 15px;
  color: #888;
  margin-left: 10px;
  margin-top: 2%;
}

.required {
  color: #e74c3c;
  margin-right: 5px;
}

.apply-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.apply-button {
  padding: 10px 50px;
  background-color: #1e1387;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.apply-button:hover {
  background-color: #151057;
}

/* 파일 업로드 관련 스타일 */
.file-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-left: 20px;
}

.drop-zone {
  border: 2px dashed #ccc;
  padding: 30px;
  text-align: center;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 5px;
}

.drop-zone:hover, .drop-zone.dragover {
  border-color: #1e1387;
  background-color: #f0f0f0;
}

.drop-zone-text {
  color: #666;
}

.drop-zone-text i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #888;
}

.file-limit {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #eee;
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: #fff;
  text-align: left;
}

.file-icon {
  margin-right: 10px;
  font-size: 16px;
  color: #1e1387;
}

.file-name {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.file-size {
  margin: 0 10px;
  color: #999;
  font-size: 12px;
}

.file-delete {
  color: #e74c3c;
  cursor: pointer;
  font-size: 16px;
}

.upload-progress {
  margin-top: 10px;
  width: 100%;
  background-color: #f0f0f0;
  height: 10px;
  border-radius: 5px;
  position: relative;
}

.progress-bar {
  background-color: #1e1387;
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 0.2s;
}

.progress-text {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 12px;
  color: #666;
}

textarea {
  margin-left: 27px !important;
  resize: auto;
}
@media (max-width: 768px) {
  .form-group {
      flex-direction: column;
  }
  
  .form-group label {
      width: 100%;
      margin-bottom: 5px;
  }
  
  .file-group {
      margin-left: 0;
  }
  
  .width200 {
      width: 100% !important;
  }
  textarea {
      margin-left: 0 !important;
  }
}