.feedback {
    grid-area: g;
    
    background-color: rgba(46, 31, 31, 0.2);
    padding: 3rem 30px;
	border-radius: 20px;
	backdrop-filter: blur(3px);
    transform-style: preserve-3d;
    transform: perspective(800px);
	border-top: 1px solid rgba(255,255,255,.5);
	border-left: 3px solid rgba(255,255,255,.5);
	box-shadow: 5px 5px 10px black, inset 5px 5px 10px rgba(0,0,0,.2), inset -5px -5px 10px rgba(255,255,255,.2), inset -2px -2px 5px rgba(0,0,0, .5);

    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback form{
    align-items: center;
    display: flex;
    flex-direction: column;
}



.form-group {
    margin-bottom: 20px;
    width: 100%;
}

/* label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
} */

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-button {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.file-input-button:hover {
    background: #2980b9;
}

.file-name {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

.file-info {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

.btn-submit {
    /* background: #2ecc71;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s; */
    
    
    color: #fff;
	border-radius: 5px;
	padding: 10px 25px;
	/* font-family: 'Lato', sans-serif; */
	/* font-size: 16px; */
	font-weight: 900;
	/* font-style: normal; */
	text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
	text-decoration: none;
	text-align: center;
	background: transparent;
	cursor: pointer;
	position: relative;
	display: inline-block;
	box-shadow: inset 0px 1px 0px rgba(255,255,255,1),0px 1px 3px rgba(0,0,0,0.3);
	outline: none;
	border: 1px solid #ba6;
	
	/*-----------*/
	backface-visibility: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	white-space: nowrap;
	border-color: #7c7c7c;
	background: linear-gradient(180deg,#e6e6e6 0%,rgba(0, 0, 0, 0.25) 49%, rgba(38, 38, 38, 0.6) 51%,rgba(0, 0, 0, 0.25) 100%);
	border-radius: 5px;
	background-color: #e0e5ec;
	
	width: 100%;
}

.btn-submit:active{
    -webkit-transform: translateY(2px);
	transform: translateY(2px);
}

/* .btn-submit:hover {
    background: #27ae60;
} */

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}