/* Styles for anonymous limit notice */
.anonymous-limit-notice {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
    font-size: 13px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-attention 2s infinite;
}

.anonymous-limit-notice i {
    font-size: 15px;
}

.anonymous-upgrade-button {
    margin-left: auto;
    background-color: #3b82f6;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.anonymous-upgrade-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
}

@keyframes pulse-attention {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--input-background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--focus-ring);
  outline: none;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 16px;
    background: linear-gradient(to right, #0044ff 0%, #0066ff 50%, #0099ff 100%);
    border-radius: 10px;
    outline: none;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(0, 102, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover {
    background: linear-gradient(to right, #0033cc 0%, #0055ff 50%, #0088ff 100%);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 102, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60efff, #0061ff);
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(96, 239, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 
        0 4px 15px rgba(0, 97, 255, 0.4),
        0 0 30px rgba(96, 239, 255, 0.6);
    border-color: white;
    background: linear-gradient(135deg, #60efff, #00ff87);
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, #0061ff, #00ff87);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 239, 255, 0.4);
}

.period-value {
    font-size: 72px;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #60efff, #0061ff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 239, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

#days-display {
    font-size: 72px;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #60efff, #0061ff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 239, 255, 0.3);
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 30px rgba(96, 239, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 50px rgba(96, 239, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(96, 239, 255, 0.3);
    }
}