/* Registration Pages Styling - Vue App Style */

/* Background and base styles */
body.registration-page {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px;
  margin: 0;
}

/* Header with logo */
.registration-header {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.registration-header .img-container {
  margin-bottom: 20px;
}

.registration-header #logo {
  max-width: 200px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Main container */
.registration-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Screen base style (similar to Vue app) */
.registration-screen {
  text-align: center;
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* Titles */
.registration-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  letter-spacing: 4px;
}

.registration-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Form styles */
.registration-form {
  text-align: left;
  margin-top: 30px;
  width: 100%;
}

.registration-form label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  font-size: 1rem;
  text-align: left;
}

.registration-form .form-control {
  width: 100%;
  padding: 15px 15px 15px 15px;
  margin-left: -15px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: 'Courier New', monospace;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.registration-form .form-control:focus {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  color: #fff;
}

.registration-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.registration-form .invalid-feedback {
  color: #ff6347;
  font-size: 0.9rem;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}

.registration-form .is-invalid {
  border-color: #ff6347;
}

.registration-form .is-invalid:focus {
  border-color: #ff6347;
  box-shadow: 0 0 10px rgba(255, 99, 71, 0.3);
}

/* Buttons */
.registration-button {
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  margin-top: 20px;
  display: block;
}

.registration-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffed4e 0%, #ffb347 100%);
  color: #000;
}

.registration-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.registration-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.registration-button:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

/* Registration code display */
.registration-code-container {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.registration-code {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 8px;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

/* Link styles */
.registration-link {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.registration-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  text-decoration: underline;
}

/* Button as link style */
a.registration-button {
  text-decoration: none;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .registration-title {
    font-size: 2rem;
  }

  .registration-screen {
    padding: 40px 20px;
  }

  .registration-code {
    font-size: 2rem;
    letter-spacing: 4px;
  }
}

