* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
	background-image: url("https://uwt-public.s3.us-east-1.amazonaws.com/2026/03/confirm.png");
	background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
	margin: 0;
}
    h2 {
      margin-top: 0;
      color: #333;
    }
	
 /* Lightbox Overlay */
.survey-overlay {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    }
.survey-overlay.show {
    opacity: 1;
    visibility: visible;
 }
	

    /* Survey container */
.survey-container {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
 }
.survey-overlay.show .survey-container {
    opacity: 1;
    transform: scale(1);
  }


h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle2 {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}


.answer-textarea {
   width: 100%;
   min-height: 120px;
   padding: 14px 16px;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   font-size: 16px;
   resize: vertical;
   margin-bottom: 20px;
   font-family: inherit;
 }
.answer-textarea:focus {
   outline: none;
   border-color: #f7ca8f;
}
	
/* .select-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.sub-options {
    display: none;
    margin-bottom: 25px;
}

.sub-options p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
} 

.platform-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-option {
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.platform-option:hover {
    background-color: #e8eaf6;
}

.platform-option input {
    margin-right: 8px;
}

.platform-name {
    font-size: 14px;
    color: #333;
}
*/
 .submit-btn {
      background: #007bff;
	  background: #e69506;
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
    }
.submit-btn:hover {
	background: #9baabd;
    }
    .thank-you-message {
      display: none;
    }
    .checkmark {
      font-size: 48px;
      color: #28a745;
      margin-bottom: 10px;
    }
	
.checkmark {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

  .fade-in {
      animation: fadeIn 0.4s ease forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

 
/* Responsive adjustments */
@media (max-width: 600px) {
    .survey-container {
        padding: 30px 20px;
    }
    
    .platform-options {
        flex-direction: column;
    }
    
    .platform-option {
        width: 100%;
    }
}