html {
  scroll-behavior: smooth;

}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0dfdf;
  color: #1a1a1a;
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('IMG/polusa3.jpg') no-repeat center center/cover;
}

main{
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #aaa;
    text-align: center;
    flex-direction: column;
}

input, button {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button{
    cursor: pointer;
}

@media (max-width: 768px) {
    form {
        display: flex;
        width: 60vh;
        height: 60vh;
    }
}