@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 300;
    src: url('lib/fonts/prompt/prompt-light.ttf') format('truetype');
}
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 400;
    src: url('lib/fonts/prompt/prompt-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 600;
    src: url('lib/fonts/prompt/prompt-semibold.ttf') format('truetype');
}
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 700;
    src: url('lib/fonts/prompt/prompt-bold.ttf') format('truetype');
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kv-input {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: rgba(180, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: white;
    font-weight: 500;
    transition: all 0.2s;
}

.kv-input:focus {
    outline: none;
    background: rgba(200, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.kv-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.kv-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.35rem;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.kv-checkbox:checked {
    background: white;
    border-color: white;
}

.kv-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: black;
    font-size: 0.8rem;
    font-weight: bold;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

#captcha-txt svg {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

.animate-fade-in {
    animation: fade-in 0.3s ease-out forwards;
}

#status-icon {
    animation: float 3s ease-in-out infinite;
}

#modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

#modal-backdrop.show #modal-content {
    opacity: 1;
    transform: scale(1);
}

.modal-error-icon {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444;
}

.modal-success-icon {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e;
}
