html {
  scroll-behavior: smooth;

}

body {
  height: 100vh;
  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');
    background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

main{
    display: flex;
    margin: 10vh;
    justify-content: center;
    align-items: center;
}

form {
    width: 60vw;
    height: 40vh;
    min-height: fit-content;
    min-width: fit-content;
    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: 60vw;
        height: 40vh;
        min-height: fit-content;
        min-width: fit-content;
    }
}