.cgr-login-form,
.cgr-signup-form,
.cgr-profile-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #000;
  border-radius: 8px;
}

.cgr-login-form h2,
.cgr-signup-form h2,
.cgr-profile-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #555;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

button[type="submit"] {
background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
}

button[type="submit"]:hover {
background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
}

.cgr-message {
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
}

.cgr-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.cgr-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.cgr-logout-section {
  background: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cgr-logout-section p {
  margin: 0 0 10px 0;
  color: #333;
  font-weight: bold;
}

.cgr-logout-btn {
  display: inline-block;
  background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.cgr-logout-btn:hover {
  opacity: 0.8;
  color: white;
  text-decoration: none;
}

.cgr-already-logged-in {
  background: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cgr-already-logged-in p {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
}

.cgr-profile-link {
  display: inline-block;
  background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.cgr-profile-link:hover {
  opacity: 0.8;
  color: white;
  text-decoration: none;
}

/* Navigation transition styles */
.navbar-nav .nav-link {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}

/* Dashboard button specific styling */
.navbar-nav .nav-link[href*="call-girl-profile"] {
  background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
  color: white !important;
  border-radius: 4px;
  padding: 8px 20px;
  margin: 0 5px;
}

.navbar-nav .nav-link[href*="call-girl-profile"]:hover {
  opacity: 0.8;
  color: white !important;
}

@media (max-width: 768px) {
  .cgr-login-form,
  .cgr-signup-form,
  .cgr-profile-form {
    margin: 10px;
    padding: 15px;
  }

  .form-section {
    padding: 15px;
  }
}
