/* page 1 */
:root {
  --primary-color: #e50914;
  --secondary-color: #222;
  --accent-color: #ff6b00;
  --light-color: #f8f8f8;
  --dark-color: #111;
  --text-color: #333;
  --light-text: #1100ff;
  
}
.container {
  width: 70%;
  margin: 40px auto;
  padding: 20px;
  border: 2px outset black;
}
.form-header{
  text-align: center;
}
.form-header h1{
  color: var(--light-text);
}
.form-header img{
  list-style: none;
  animation: display 5s alternate infinite;
  width: 40%;
}
@keyframes display {
  0%, 100%{
      opacity: 0.1;
  }
  50%{
     opacity: 1;
  }
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #222222;
  margin: 0;
  /* padding: 20px; */
  color: #ffffff;
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px #FF2D6F; }
  50% { box-shadow: 0 0 40px #A45AFF; }
}
h1 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
textarea {
  height: 100px;
}
.submit-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #2980b9;
}
.radio-group, .checkbox-group {
  margin-top: 10px;
}
.radio-option, .checkbox-option {
  margin-bottom: 8px;
}
.note{
  color: var(--primary-color);
}
.me{
  display: flex;
  gap: 2%;
}
.payment-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  padding: 30px;
}

h2 {
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  color: #e50914;
  border-color: #3498db;
  background-color: #0d78e4;
}

.payment-option.selected {
  border-color: #3498db;
  background-color: #ebf5fb;
}

.payment-option input {
  margin-right: 15px;
  transform: scale(1.2);
}

.payment-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  object-fit: contain;
}

.payment-label {
  font-weight: 500;
  color: #ffffff;
}

.submit-btn {
  width: 100%;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2980b9;
}

.note {
  font-size: 13px;
  color: #ff0000;
  margin-top: 20px;
  text-align: center;
}

@media screen and  (max-width: 430px)  {
    body{
     margin-left: none;
     padding-left: none;
    }  
  .container{
      width: 90%;
    }
    .form-container {
      width: 85%;
    }
}