/* Devise registration/login custom styles */

.container-fluid {
  margin-top: 6rem !important;
}

.card {
  background-color: #333;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

input.form-control {
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
}

.btn-primary {
  width: 100%;
  border-radius: 10px;
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.pop-up {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #dc3545;
  color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.pop-up.show {
  display: block;
}
.pop-up .close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: white;
  cursor: pointer;
}

.requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.requirements span {
  display: flex;
  align-items: center;
  color: red;
  font-size: 0.95rem;
  margin-right: 1.2rem;
}
.requirements .icon {
  margin-right: 0.4em;
  font-size: 1.2em;
}
.requirements .icon.passed {
  color: green;
}
.requirements .text.passed {
  color: green;
}

.progress {
  height: 5px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.progress-bar {
  transition: width 0.3s ease;
}

@media (max-width: 600px) {
  .card {
    max-width: 98vw;
    padding: 0.5rem;
  }
  .requirements {
    gap: 0.5rem;
    font-size: 0.85rem;
  }
} 
