@charset "utf-8";

.main {
	margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
}

.contact-section {
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	padding: 15px 34px
    }

    .contact-card h2 {
      margin-bottom: 25px;
      font-size: 28px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
		
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      color: #cbd5f5;
    }

    input, textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      border: none;
      outline: none;
      font-size: 15px;
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    input::placeholder, textarea::placeholder {
      color: #94a3b8;
    }

    textarea {
      resize: none;
      min-height: 120px;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      cursor: pointer;
      background: linear-gradient(135deg, #38bdf8, #6366f1);
      color: white;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .secure-note {
      margin-top: 15px;
      font-size: 12px;
      text-align: center;
      color: #94a3b8;
    }

.font_size {
	font-size: 25px;
	color: white;
}

@media (max-width: 1180px) {
	.main {
		width: 450px !important;
	}
	.font_size {
	font-size: 15px;
	}
	.contact-section {
	padding: 15px 20px
    }
}

    @media (max-width: 450px) {
      .contact-card {
        padding: 15px;
      }
    }