@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #F8E1DB;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*back button*/
.pre a {
    text-decoration: none;
}

.pre {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: 0; /* Remove the left margin */
}

.pre button {
  height: 40px;
  width: 100px;
  margin-top: 10px !important; /* Apply margin-top with !important */
  margin-bottom: 0;
  padding: 10px;
  background-color: #ba6a62;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 15px;
}

.pre button:hover {
  background-color: #d96a60;
}

.main-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container {
    max-width: 700px;
    width: 100%;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.container h1 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: black;
    margin-bottom: 20px;
}

/* Input Fields */
.input-box {
    width: 100%;
    margin-top: 15px;
}

.input-box label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.input-box input,
textarea {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 5px;
    outline: none;
}

.input-box1{
    width: 75%;
    margin-top: 15px;
    margin-left: 40px;
}
.input-box1 label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.input-box1 input,
textarea {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 5px;
    outline: none;
}

textarea {
    height: 100px;
    resize: none;
}

/* Column Layout */
.column {
    display: flex;
    column-gap: 20px;
}

/* Gender in the Same Row */
.gender-box {
    flex: 1;
    margin-top: 15px;
}

.gender-opt {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.gender {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gender input {
    accent-color: blue;
    cursor: pointer;
}

/* Button */
button {
    height: 50px;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    cursor: pointer;
    border: none;
    border-radius: 7px;
    transition: 0.3s;
}

button:hover {
    background-color: rgb(82, 81, 81);
}

/* Responsive */
@media screen and (max-width: 500px) {
    .column {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .gender-opt {
        row-gap: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .main-cont{
        margin-top: 80px;
    }
}
