
/* Reset default margin and padding for body */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Existing variable for background color */
    color: #ffffff; /* Existing variable for text color */
    overflow-x: hidden;
    font-size: 25px;
    width: 100vw;
    height: 100vh;
}

h1 {
  position: fixed;
  top: 5%;
  font-size: 40px;
  color: #ffffff;
  left: 0;
  right: 0;
  text-align: center;
}

.standard-text {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

footer p {
  font-size: 14px;
  color: white;
}

/* General Form Styles */
/* Form Field Styles */
.form-field {
display: flex;
flex-direction: column;
margin-bottom: 20px;
background-color: black;
}

/* Input and Textarea Styles */
input[type="text"], input[type="email"], input[type="password"], textarea {
width: 300px;
padding: 10px;
margin-bottom: 20px; /* This adds a gap below each input and textarea */
border: 1px solid #555;
background-color: #444;
color: #fff;
font-size: 16px;
}

input[type="date"], select {
  width: 300px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid white;
  border-radius: 5px;
  background-color: gray;
  color: #fff;
  font-size: 20px;
  text-align: center;
}


/* Checkbox and Radio Button Styles */
input[type="checkbox"], input[type="radio"] {
width: auto;
background-color: #444;
color: #fff;
margin-bottom: 20px; /* This adds a gap below each checkbox and radio button */
}

/* File Upload Styles */
input[type="file"] {
background-color: black;
color: #fff;
margin-bottom: 20px; /* This adds a gap below the file upload */
}

/* Button Styles */
button {
background-color: purple;
color: #fff;
border: none;
padding: 10px;
align-self: stretch;
width: 100%;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}

button:hover {
background-color: #777;
}

/* dynamic-css-container Start */

/* dynamic-css-container End */
