/* Custom styles */
body {
  background-color: #121212;
  color: white;
  font-family: "Arial", sans-serif;
}

.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../imgs/Background/image.png);
  background-size: cover;
  background-position: center;
  padding: 100px;
  align-items: center;
  justify-content: center;
}
.input-group-text {
  font-size: 1.5rem !important;
}
.register-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.register-form {
  padding: 30px;
  max-width: 400px;
}
.register-form img {
  filter: drop-shadow(2px 4px 6px black);
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

.register-form h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.register-image {
  padding: 20px;
}

.register-image img {
  filter: drop-shadow(2px 4px 6px black);
  border-radius: 10px;
  text-align: center;
}

.login-link,
.register-link {
  display: block;
  margin-top: 10px;
  color: #000000;
  text-decoration: none;
  text-align: center;
}

.login-link:hover,
.register-link:hover {
  color: rgb(5, 142, 177);
}
.row {
  --bs-gutter-x: 0rem !important;
}
.register-box {
  padding: 20px;
}
/* Style for buttons */
.btn {
  width: 100%;
  margin-bottom: 10px;
}

.register-btn {
  width: 100%;
  background: linear-gradient(to right, #6a82fb, #fc5c7d);
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}

.register-btn:hover {
  background: linear-gradient(to right, #fc5c7d, #6a82fb);
  transform: translateY(-3px);
}
