/***** User Login and Password Style *****/
.login-form {
  width: 50%;              
  padding: 15px;
  font-size: 18px;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px; 
}
.custom-username-class {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .custom-password-class {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
.error-message {
  margin-bottom: 20px;
  padding: 10px;
  background: #ffe5e5;
  color: #da3f3a;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}
/******* Provider Style ******/
.custom-field-textinput{
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.custom-field-fileinput{
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.custom-field-Textarea{
  width: 90%;
  height: 100px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: first baseline ;
}
.custom-field-SelectMultiple{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.dual-box-container {
  display: flex;
  align-items: center;
}
.dual-box {
  width: 45%;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.dual-box select {
  width: 100%;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
}
.dual-box-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-left: 5px;
  margin-right: 5px;
}
.dual-box-buttons button {
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid #007bff;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.dual-box-buttons button:hover {
  background-color: #0056b3;
}
/******* Provider Details Style ******/
.details-fields {
  background-color:rgb(226, 228, 228);
  border-radius: 10px;
  width: 80%;
  font-size: x-small;
  font-weight: bold;
  margin: 10px auto;
}
#toggle-details {
inherits:inherit;
}
#toggle-details:hover {
  text-decoration:underline;
  cursor: pointer;
}
.hidden {
  display: none;
}
.rotate-down {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.rotate-up {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
/* Responsive */
@media (max-width: 768px) {
  .login-form {
    width: 100%;
  }
}
