h1 {
    font-family: "Fira Sans", sans-serif;
    font-size: 2.5em;
    text-align: center;
    margin-top: 20px;
    color: #333;
}

p {
    font-family: "Fira Sans", sans-serif;
    width: 75%;
    margin: 20px auto;
    color: #333;
}

.row {
    width:100%;
}

.column {
    float: left;
    width: 50%;
}

.left {
    justify-content: left;
}

.right {
    justify-content: right;
}
  
.row:after {
    content: "";
    display: table;
    clear: both;
}

.column.logo {
    display: flex;
    align-items: center;
    max-height: 200px;
}

.logo {
    height: 200px;
}

.logo-helper {
    display: inline-block;
    max-height: 100%;
    vertical-align: middle;
    padding: 0 40px;
}

img.logo {
    vertical-align: middle;
    max-width: 100%;
    object-fit: contain;
}

img.logo.limit {
    vertical-align: middle;
    height: unset;
    max-height: 60px;
    object-fit: contain;
}

.form-group {
    font-family: "Fira Sans", sans-serif;
    padding: 10px;
    max-width: 100%;
}

.form-group label {
    display: block;
    margin-left: 12.5%;
    font-size: 1.2em;
    font-weight: bold;
}

.form-group input[type="text"], select, textarea {
    display: block;
    margin:auto;
    width: 75%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing:border-box;
}

.form-group input[type="text"]:focus, select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="submit"] {
    display: block;
    margin-left: 12.5%;
    width: 75%;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: rgb(206, 33, 39);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-group input[type="submit"]:hover {
    background-color: #c41414;
}

.chubb-disclaimer {
    font-size: 0.8em;
}