
/* Scoped styles for the content locker */
.clocker-wrapper {
  border: 1px solid #1d3557;
  padding: 30px;
  background: linear-gradient(135deg, #f0f4ff, #dce3f0);
  max-width: 520px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInBox 1s ease-in-out;
}

.clocker-form h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: #1d3557;
  animation: fadeInText 0.8s ease-in-out;
}

.clocker-form input {
  display: block;
  width: 100%;
  margin: 12px 0;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #aab8d1;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}

.clocker-form input:focus {
  border-color: #1d3557;
  box-shadow: 0 0 5px rgba(29, 53, 87, 0.3);
  outline: none;
}

.clocker-form button {
  background: #1d3557;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 17px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.clocker-form button:hover {
  background: #16324f;
  transform: scale(1.03);
}

#clocker_message {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  color: #d00000;
}

.clocker-content {
  font-size: 16px;
  color: #212529;
  margin-top: 20px;
  animation: fadeInContent 1s ease-in-out;
}

/* Animations */
@keyframes fadeInBox {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInContent {
  from { opacity: 0; }
  to { opacity: 1; }
}
