.container {
  max-width: 1200px;
}

header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  margin: 0;
  color: #dbdbdb !important;
  cursor: auto !important;
}
.container-buttons-icon {
  display: flex;
  gap: 4px;
  flex-direction: column;
  max-width: 50vw;
  overflow: hidden;
  flex-basis: 210px;
  align-items: center;
}

.icon-language {
  width: 20px;
  height: 20px;
}

.container-language {
  background-color: #fff;
  border-radius: 4px;
  width: fit-content;
  margin-top: 5px;
}

.container-language:hover {
  cursor: pointer;
}

.forms-page {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow-y: auto;
  position: relative;
  height: auto;
  min-height: 100%;
}

.forms-page header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  background-color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  z-index: 9999;
}

.forms-page header h1 {
  font-size: 1.4rem;
  color: #dbdbdb;
  cursor: pointer;
}

.forms-page header h1:hover {
  color: #fff;
}

.forms-page header .options {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.forms-page header .options button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #c7c7c7;
  transition: all 0.3s;
}

.forms-page header .options button:hover {
  color: #fff;
}

.forms-page .container-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  color: #222;
  margin: 70px auto auto;
}

.forms-page section {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  color: #222;
  margin: 70px auto auto;

}

.forms-page section h1 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.forms-page section .line {
  width: 100%;
  height: 1px;
  background-color: #c2c2c2;
  margin-bottom: 10px;
}

.forms-page section .info {
  width: 100%;
  height: 100%;
}

.forms-page section button {
  position: relative;
  bottom: 0;
}

.forms-page footer {
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background-color: #000;
}

.forms-page .progress .progress-bar {
  background-color: #006eff;
}

.forms-page nav .active {
  background-color: #006eff;
}

.custom-footer {
  padding: 1rem 0;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}

.custom-footer p {
  margin: 0;
  color: #505050;
}

.container-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.container-main {
  height: 100%;
  margin-top: 70px;
}

#add-btn {
  margin-top: 10px;
}

.custom-file-container .custom-file-input {
  padding: 10px;
}

.custom-file-container .custom-file-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 5px;
  margin-right: 5px;
}
