/* premium inputs */
.vc-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border2) !important;
    color: var(--text) !important;
    border-radius: var(--r) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease-in-out !important;
}

.vc-input::placeholder {
    color: var(--text3) !important;
}

.vc-input:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 12px var(--accent-glow) !important;
    outline: none !important;
}

/* form label */
.form-label {
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
    color: var(--text2);
    margin-bottom: 8px;
}

/* google login button */
.btn-google {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border2);
    color: var(--text);
    border-radius: var(--r);
    transition: all 0.2s ease;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-google:active {
    transform: translateY(0);
}

/* here link */
.here-link {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(127, 107, 252, 0.3);
    transition: color 0.15s ease, text-shadow 0.15s ease;
}

.here-link:hover {
    color: var(--green);
    text-shadow: 0 0 12px rgba(56, 217, 169, 0.4);
}

/* divider */
.divider {
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    color: var(--text3);
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--border);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}
