body {
  font-family: "Roboto", sans-serif;
  background-color: #d1d1d1;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  background-image: url("../upload/auth-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 25%);
  z-index: -1;
}

span, p, small{
    color: #fff;
}
.login-container {
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

h1 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 500;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  background: transparent;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 99px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #667eea;
}

.btn, .submit-btn{
  width: 100%;
  padding: 15px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.error {
  background: #ff6b6b;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.success {
  background: #51cf66;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.links {
  margin-top: 20px;
}

.links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
}

.links a:hover {
  text-decoration: underline;
}

.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
}

.language-selector select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}
.register-container {
  /* background: white; */
  padding: 40px;
  border-radius: 15px;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
  width: 100%;
  max-width: 450px;
}

.register-header {
  text-align: center;
  margin-bottom: 30px;
}

.register-header h1 {
  color: #ffffff;
  margin: 0 0 10px 0;
  font-size: 28px;
}


.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 99px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
}

.form-group .required {
  color: #e74c3c;
}


.submit-btn:hover {
  transform: translateY(-2px);
}

.login-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.login-link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

.message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.error {
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.success {
  background: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

.referral-info {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #667eea;
}

.referral-info h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
}

.referral-info p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
