
	.contact-box {
		max-width: 600px;
		margin: 0 auto;
	}

	.contact-input {
		background: rgba(255,255,255,0.08);
		border: 1px solid rgba(255,255,255,0.1);
		color: #e0e6ed;
		border-radius: 10px;
		padding: 12px;
		margin-bottom: 15px;
	}

	.contact-input::placeholder {
		color: rgba(255,255,255,0.6);
	}

	.contact-input:focus {
		background: rgba(255,255,255,0.12);
		border-color: #4cc9f0;
		box-shadow: none;
		color: #efefef;
	}

	.contact-btn {
		background: linear-gradient(180deg, #3a3f45, #2b3035);
		border: 1px solid rgba(255,255,255,0.1);
		color: #efefef;
		padding: 5px 12px;
		border-radius: 10px;
		font-weight: 300;
		letter-spacing: 1.2px;
		transition: all 0.3s ease;
	}

	.contact-btn:hover {
		background: linear-gradient(180deg, #4a4f55, #353a40);
		border-color: rgba(255,255,255,0.2);
	}

	.contact-btn:active {
		transform: scale(0.98);
	}
	
	.input-error {
		color: #f87171;
		font-size: 12px;
		margin-top: 5px;
		margin-bottom: 10px;
	}

	.success-global {
		background: rgba(34,197,94,0.1);
		color: #22c55e;
		padding: 10px;
		border-radius: 8px;
		margin-bottom: 15px;
		text-align: center;
	}
	
	#countdown {
		display: block;
		margin-top: 5px;
		opacity: 0.8;
	}