/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 27 2025 | 10:50:38 */
/* =================================
		TC Page CSS Start
================================= */
/* Main wrapper */
.tc-wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Input field */
.tc-wrapper input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease-in-out;
}

.tc-wrapper input[type="text"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
}

/* Submit button */
.tc-wrapper button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    color: #fff;
    font-size: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.tc-wrapper button:hover {
    background: #1557b0;
}
/* =================================
		TC Page CSS End
================================= */

/* form.tc-from {
	display: flex;
	gap: 20px 40px;
}

@media screen and (max-width: 500px) {
	form.tc-from {
		flex-direction: column;
		align-items: start;
	}
} */