@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: Trebuchet MS,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    display: flex;
    align-items: center;
    justify-content: center;
}

body form {
    border-radius: 20px;
    padding: 0 30px 30px;
}

.form-element {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    line-height: 2px;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-family: 'Trebuchet MS';
}

@media (min-width:768px) {
  .form-element1 {
    width: 400px;
  }
}
@media (max-width:767px) {
	.form-element1 {
	    max-width: 90%;
	}
}

button.submit {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: auto;
    background-color: #554433;
    color: white;
    font-weight: bold;
    font-size: 16px;
}