@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body {
   background-color: #FAF9F6;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
}
.box-login {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 60px 0px;
   background-color: #fff;
   border-radius: 12px;

   color: #333;
   width: 550px;
   box-shadow: 2px 2px 1rem 0 rgba(0, 0, 0, 0.1);
}
.box-login img {
   width: 50px;
   /* margin-top: 40px; */
   margin-bottom: 40px;
   object-fit: cover;
}
h1 {
   font-family: Urbanist;
   color: #333;
   font-size: 1.6rem;
   margin-bottom: 60px;
   font-weight: 500;

}
h1 span {
   color: #f25c05;
   font-weight: 600;
   /* margin-bottom: 20px; */
}
form div {
   display: flex;
   flex-direction: column;
   margin-bottom: 30px;
}
form {
   /* font-family: Inter; */
   font-family: Urbanist;
}
form input {
   outline: none;
   padding: 16px;
   min-width: 300px;
   border: none;
   border-radius: 20px;
   background-color: #FAF9F6;
   border: 1px solid #FAF9F6;
}
form input[type=submit] {
   background-color: #f25c05;
   color: #fff;
   font-size: 0.9rem;
   cursor: pointer;
   font-weight: bold;
   border: none;
}
form input[type=submit]:hover {
   background-color: #fff;
   transition: 0.5s ease-in-out;
   color: #f25c05;
   border: #f25c05 1px solid;
}
form input:focus {
   border: 1px solid #f25c05;
}
form label {
   margin-bottom: 8px;
   font-weight: 600;
   color: #333;
   font-size: 0.8rem;
   font-family: Inter;
}