/* #region GlassEffect */

.mdGlassBodyEffect {
  background: rgba(12, 39, 71, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  border: 1px solid rgba(31, 97, 241, 0.3);
  background-image: url('../../images/bg/MedcemBg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mdGlassFormEffect {
  background: rgba(20, 21, 51, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(13, 85, 240, 0.3);
}

/* #endregion */

/* #region Height */

.mdHeight {
  height: 85%;
}

/* #endregion */

/* #region Input */

.mdSmoothInput {
  border-radius: 14px;
  height: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mdSmoothInput:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.7);
  border-color: #007bff;
  color: rgb(10, 10, 10);
}

/* #endregion */

/* #region Button */ 

.mdBlueButton {
  background-color: rgb(105, 28, 177);
  margin-top: 15px;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.mdBlueButton:hover {
  background-color: rgb(85, 20, 140);
}

.mdRedButton {
  background-color: rgb(214, 7, 7);
  margin-top: 20px;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.mdRedButton:hover {
  background-color: rgb(200, 0, 0);
}

/* #endregion */

/* #region Image */

.mdImageRow {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mdImageItem {
  width: 15%;
  height: auto;
  border-radius: 30px;
}

/* #endregion Image */

/* #region Icon */

.mdFormIconColor {
  color: rgb(198, 204, 180);
}

/* #endregion Icon */