html, body {
    margin: 0;
    padding: 0;
}

.main {
    text-align: center;
}
.form.container {
    margin: auto;
    width: 210mm;
    height: 297mm;    
    background-size: contain;
    position: relative;
}

input[name="first_name"] {
    position: absolute;
	top: 92mm;
	left: 119mm;
	width: 78mm;
	font-size: 20px;
	font-family: serif;
	outline: none;
	border: solid white;
}
input[name="last_name"] {
    position: absolute;
    top: 85mm;
    left: 124mm;
    width: 71mm;
    font-size: 16px;
    font-family: serif;
    outline: none;
}
input[name="n_clients"] {
    position: absolute;
    top: 116mm;
    left: 119mm;
    width: 25mm;
    font-size: 20px;
    font-family: serif;
    outline: none;
	border: solid white;
}
input[name="agency"] {
    position: absolute;
    top: 116mm;
    left: 152mm;
    width: 45mm;
    font-size: 20px;
    font-family: serif;
    outline: none;
	border: solid white;
}

input[type="submit"] {
    position: absolute;
    top: 490px;
    right: 105px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    background-color: #ff0000;
    border-radius: 5px;
    border:none;
    padding: 10px 40px;
    cursor: pointer;
}

.company-logo {
    position: absolute;
    top: 120mm;
    left:50%;
    transform: translateX(-50%);
    height: 21mm;
}

.company-logo-alto {
    position: absolute;
    top: 116mm;
    left:50%;
    transform: translateX(-50%);
    height: 30mm;
}
.company-logo img{
    /*height: 100%;*/
    width: auto;
}