/* *****Reset Default Browser Settings */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "roboto", sans-serif;
}

/* Heading Styles */
h1 {
  text-align: center;
  text-transform: uppercase;
  color: #123d34ee;
  letter-spacing: 5px;
  font-weight: 900;
  padding: 30px 10px;
  margin: 5px auto;
}
/* *******Container styles */
.container {
  width: 980px;
  border-radius: 20px;
  margin: 20px auto;
  background-color: #498c5f;
  background-image: linear-gradient(
    rgba(100, 235, 210),
    rgb(209, 226, 228, 0.981)
  );
  font-size: 20px;
}

/* *******Inputs Styles */
input[type="text"],
input[type="email"],
input[type="date"],
input[type="month"],
input[type="number"],
select,
textarea {
  width: 25%;
  padding: 8px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 4px 3px 2px rgba(13, 72, 30, 0.63);
  margin-top: 6px;
  font-size: 18px;
  outline: none;
  resize: vertical;
  cursor: pointer;
  display: inline-block;
  background: rgb(222, 238, 237);
}

/* *********Buttons************* */

button {
  width: 190px;
  height: 45px;
  font-weight: 700;
  background: #1db096;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-radius: 20px;
  font-size: 20px;
  box-shadow: 10px 10px 30px rgba(24, 139, 119, 0.2);
  border: none;
  cursor: pointer;
}
.btn {
  color: black;
  background: #fff;
}
.btn:hover {
  background: #1db096;
  color: #fff;
}
button:hover {
  background: #fff;
  color: black;
}

/* *******Labels Styles */
label {
  margin: 10px 25px;
  display: inline-block;
  color: rgb(53, 53, 53);
  font-size: 20px;
  width: 100px;
}

/* ******Language Section */
.lang {
  display: flex;
}

.lang-inner {
  background: #e3edeb;
  box-shadow: 4px 3px 2px rgba(13, 72, 30, 0.63);
  width: 550px;
  height: auto;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  padding-left: 15px;
  margin-left: 22px;
}

/* ******Frame Styles******* */

legend {
  padding: 10px;
  font-size: 24px;
  text-align: center;
  font-weight: 900;
  color: #123d34ee;
}
fieldset {
  border-radius: 20px;
  margin: 10px 50px;
}
