@charset "utf-8";
/* CSS Document */

body { font-family: 'Inter', sans-serif; }
.glass {	
	background: rgb(208 208 208 / 70%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass1 {
	background: rgba(255, 255, 255, 0.7);	
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.bulbul-gradient {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.text-gradient {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.input {
    width: 100%;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: 0.2s;
    font-size: 14px;
}
.input:focus {
    border-color: #f59e0b;
    background: #fff;
}

.label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #9ca3af;
	margin-bottom: 6px;
}