
/* Big thick Buttons */

.enter-btn {
	margin-top: 10px;
    background-color: #6B8E8E;
    background-image: url("/img/login.svg");
    
}
.enter-btn:hover {
    background-color: #378282;
    background-image: url("/img/login.svg");
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}


/* Slider */

#formWrap { 
	display: block;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
    transition: opacity 1s ease;
}
.fade-out {
	opacity: 0;
}

.slider-track {
    position: relative;
    height: 52px;
    background: #6B8E8E;
    border: none;
    border-radius: 4px 10px 10px 4px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    cursor: default;
    margin-top: 0.5rem;
  }
  .slider-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: #378282;
    border-radius: 4px 14px 14px 4px;
    transition: background 0.3s;
  }
  .slider-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: 500;
    pointer-events: none;
    gap: 6px;
  }
  .slider-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 44px;
    height: 44px;
    background: #378282;
    border: 1px solid white;
    border-radius: 4px 10px 10px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    font-size: 30px;
    padding-bottom: 8px;
    color: white;
    transition: color 0.2s;
    will-change: transform;
    z-index: 2;
  }
  .slider-handle:active { cursor: grabbing; }
  .slider-handle.success { color: #1D9E75; border-color: #1D9E75; }


