* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #7d7522; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffdde1,
  #7d7522
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffdde1,
    #7d7522
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  height: 100%;

  position: relative;
  font-family: "Rubik", sans-serif;
}

input::placeholder {
  color: rgb(221, 218, 218);
  font-family: "Rubik", sans-serif;
}

label {
  margin-bottom: 3px;
  text-transform: capitalize;
}

.btn {
  border-radius: 40px;
  width: 450px;
  padding: 11px 31px;
  background-color: #7d7522;
  transition: all 0.3s;
  border: solid 3px #f72f5a;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  bottom: 0;
  right: 0;
  position: relative;
  margin-bottom: 20px;
}

.btn:hover {
  background-color: #7d7522;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title {
  padding: 50px;
  font-size: 50px;
  font-family: "Rubik", sans-serif;
  font-style: italic;
  color: #7d7522;
  margin-bottom: 5px;
}
.subtitle {
  padding: 10px;
  font-size: 25px;
  font-family: "Rubik", sans-serif;
  color:#7d7522;
  margin-bottom: 10px;
}

.controlls {
  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.register-box,
.car-holder,
.about-car {
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: space-between;
}

.input-field {
  width: 300px;
  height: 30px;
  margin-bottom: 10px;
}

.register-box label,
.car-holder label,
.about-car label {
  font-family: "Rubik", sans-serif;
  color:#7d7522;
}

.inner-box {
  display: flex;
  flex-direction: column;
}
.btn-area {
  justify-content: center;
}


