/* Reset margins and paddings */ * {     margin: 0;     padding: 0;     box-sizing: border-box; }  body {     font-family: Arial, sans-serif;     background: linear-gradient(135deg, #ff8c00, #ff6347); /* Gradient background */     color: #fff;     display: flex;     justify-content: center;     align-items: center;     min-height: 100vh;     flex-direction: column; }  header {     text-align: center;     margin-bottom: 20px; }   h1 {     color: #fff;     font-size: 2.5rem;     margin-bottom: 10px; }  @media(max-width: 768px) {     h1 {         font-size: 2rem;     } }  .newcontainer {     background-color: rgba(0, 0, 0, 0.7);     padding: 40px 20px;     border-radius: 15px;     width: 100%;     text-align: center; }  form {     display: flex;     flex-direction: column;     align-items: center; }  form label {     margin-bottom: 8px;     font-size: 1rem; }  form input, form select {     margin-bottom: 20px;     padding: 10px;     border-radius: 5px;     border: 1px solid #ccc;     widt...
 
Comments
Post a Comment