* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background: url(/img/caminhao2.jpeg);
    /* background: url("https://th.bing.com/th/id/R.16def7cf8fe4fda249cd42d7fd771a35?rik=0jMWs3ofKJqenw&riu=http%3a%2f%2fstatic4.businessinsider.com%2fimage%2f528e411269bedd9c40629bb6-1200%2fthis-photo-of-rome-italy-was-taken-by-frances-spot-5-satellite-in-2005-the-dark-circle-in-the-bottom-right-is-the-coliseum-while-vatican-city-can-be-seen-in-the-top-third-of-the-image-to-the-left-of-the-tiber-river.jpg&ehk=0Bpy6vG2CPiQmXQK5Uz4dxIGcKSQBbgwzaNtoo3V6uk%3d&risl=&pid=ImgRaw&r=0"); */
    background-size: cover;
    background-position: center;
    min-height: 100vh;  
    display: flex;
   align-items: center;
   justify-content: center;
}

header{
    position: fixed;
    top: 0;
}

.logo img{
    width:150px;
}

.container {
    width: 420px;
    background: transparent;
    border: 2px solid rgb(255, 102, 0);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 30px 40px;
}
h1 {
    font-size: 36px;
    text-align: center;
}
.input-container {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
.input-container input {
    width: 100%;
    height: 100%;
    border: none;
    border: 2px solid rgb(255, 115, 0);
    border-radius: 10px;
    font-size :16px;
    background: transparent;
    outline: none;
    color: #fffe;
    padding: 20px 45px 20px 20px;
}
.input-container input::placeholder {
    color: #fff;
}
.input-container img {
    position: absolute;
    right: 24px;
    margin-top: 5px;
    top: 20%;
}
.input-container a {
  font-size: 16px;
  margin-top: 5px;
  color: #fff;
  text-decoration: none;
}
.input-container a:hover {
  text-decoration: underline;
}
.bota{
    width: 100%;
    height: 50px;
    background-color: #ff8800;
    border: none;
    border-radius: 10px;
    color:#fff;
    font-weight: 500;
    margin-top: 24px;
    cursor: pointer;
    outline: none;
    font-size: 16px;
}
.bota:hover {
    background-color: #fd951e;
 
}
.cadastro {
    margin: 20px 0;
    text-align: center;
}
.cadastro p{
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.cadastro p a {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.cadastro p a:hover {
    text-decoration: underline;
}