/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: url(../assets/cover-from.jpg);
}

.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.tagline-form{
  font-size: 1rem;
}
.logo-form{

  border-bottom: 3px solid #000;
}
.flex-container{
display: flex;
gap: 15px;
}

.bawah{
    margin-top: 2rem;
    align-items: center;
}

.container .form {
  margin-top: 30px;
}
.form .input-box,.select-box {
  width: 100%;
  margin-top: 20px;
}

.input-box,.select-box,.bawah label  {
  color: #333;
}
.form :where(.input-box input) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.select-box select {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.bawah textarea {
  width: 100%; 
  height: 100px; 
  padding: 10px; 
  border: 1px solid #ccc; 
  border-radius: 5px; 
  resize: vertical;
}

.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background:  #007bff;
}
.form button:hover {
  background: #0056b3;
}
/*Responsive*/
@media screen and (max-width: 500px) {
.flex-container{
    flex-wrap: wrap;
}
}
