#mailform {
	display: grid;
    grid-template-columns: auto 1fr; /* 1. tulp siltidele, 2. tulp sisendile */
    grid-gap: 15px;
    margin: 0 auto;
    align-items: center;
	width: fit-content;
	block-size: fit-content;
}

input[type="text"], input[type="email"] {
	width: 60%;
	box-sizing: border-box;
}

#kiri {
	width: 100%;
	box-sizing: border-box;
}

.merged {
    grid-column: span 2; 
    width: 100%;
}

#teade {
	font-weight: bold;
	color: yellow;
	margin-bottom: 20px;
	text-align: center;
}