.form-container {
    transition: all 0.3s ease;
}

.input-group {
    position: relative;
}

.input-group .left-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #9CA3AF;
    z-index: 10;
}

.input-group input {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.input-group .password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6B7280;
    z-index: 20;
    background: white;
    padding: 5px;
    border-radius: 50%;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s;
}

.otp-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.otp-input.filled {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-gradient {
    background: linear-gradient(135deg, #f4e4c3 0%, #f5cd7c 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.timer {
    animation: pulse 2s infinite;
}

.txt-color {
    background-color: #f9b11d;
}

.btn-color {
    background-color: #f9b11d;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.warna-utama {
    color: #f59d06;
}

.gradient-utama {
    background: linear-gradient(135deg, #f4e4c3 0%, #f59d06 100%);
}

.bg-utama {
    background-color: #f4e4c3;
}

.txt-utama {
    color: #f59d06;
}