body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.header{
  background-color: #000000;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 10px 50px;

}
.h1-container{
color: white;
font-size: large; 
position: relative;
left: 700px;
margin: 0;
  text-shadow: 0 0 20px #ff4d4d, 0 0 40px #ff1a1a;
  transition: 0.3s;  
}
button {
  font-size: 20px;
  padding: 30px 60px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
}
a {
  font-size: 20px;
}

.header-links a {
  color: white;
  padding: 2px 30px;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.5s ease;
   width: 200px;
}
.header-links a:hover {
  background-color: #ff4d4d;
  box-shadow: 0 0 30px #ff4d4d;
     width: 200px;
}
.header-links button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 15px;
}
.header-links button:hover {
  background-color: #3399ff;
  box-shadow: 0 0 10px #3399ff, 0 0 20px #3399ff;
  transition: 0.3s;
  
}
.h1-container:hover{
   transform: scale(1.05);   
}
.part-p {
  color: white;
  font-size: 18px;
  font-weight: 600;
  width: 1000px;
  line-height: 1.4;
  margin-top: 5px;
  margin-left: 300px;
  text-shadow: 0 0 15px #000000;
  letter-spacing: 1px;


}
.landing-page {
  background-color: #000000;
  width: 100%;
  min-height: 25vh;
  border-radius: 0 0 100px 100px;
position: relative;
top: -10px;
}
.h1-text {
  padding: 25px 50px;
  font-size: 50px;
  line-height: 0.9;
  color: #000000;
  font-weight: 900;
  margin-top: 15px;
  text-shadow: 0 0 20px #0000004d, 0 0 40px #0000004d;
  letter-spacing: 3px;
  transform-origin: center;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  text-align: center;
}
.h1-text:hover {
  text-shadow: 0 0 30px #0000004d, 0 0 60p #0000004d;
  transform: scale(1.05);
}
/* report */
.report-type {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 500px;
  margin: 30px auto;
}
.report-type label {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.report-type input[type="radio"] {
  margin-right: 10px;
}


/* Fields Styles */
#social-fields,
#real-fields {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 500px;
  margin: 20px auto;
  display: none;
}

#social-fields input,
#real-fields input,
#social-fields textarea,
#real-fields textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

#social-fields input:focus,
#real-fields input:focus,
#social-fields textarea:focus,
#real-fields textarea:focus {
  outline: none;
  border-color: #007BFF;
}

#social-fields input[type="file"],
#real-fields input[type="file"] {
  padding: 5px;
}


/* Responsive */
@media screen and (max-width: 600px) {
  .report-type,
  #social-fields,
  #real-fields {
    width: 95%;
    padding: 15px;
  }

  .report-type label {
    font-size: 14px;
  }

  #social-fields input,
  #real-fields input,
  #social-fields textarea,
  #real-fields textarea {
    font-size: 13px;
    padding: 10px;
  }
}
/*sumbit button*/
.submit-button button{
background-color: #4a90e2;
color: white;
border: none;
padding: 10px 25px;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
position: relative;
left: 5px;
position: relative;
top: 10px;
}
.file-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.file-label:hover {
  background-color: #0056b3;
}
