.hc-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-input, .hc-select {
    width: 100%;
    border-radius: 8px;
    padding: 14px 16px !important;
    color: #8c96aa !important;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}

.hc-input::placeholder {
    color: #8c96aa !important;
}

.hc-input:focus,
.hc-select:focus {
    border-color: #3a4152 !important;
}

.hc-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c96aa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hc-select option {
    background: #1a1f2e;
    color: #8c96aa;
}

.hc-btn {
    width: 100%;
    background: #FFCC00;
    color: #000000;
    font-family: inherit;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background .15s, transform .1s;
    box-sizing: border-box;
}

.hc-btn:hover {
    background: #e6991f;
}

.hc-btn:active {
    transform: scale(0.98);
}

.hc-btn:disabled {
    background: #8c96aa;
    cursor: not-allowed;
}

.hc-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.hc-message-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hc-message-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
