@font-face {
    font-family: Proxima-Nova-Bold;
    src: url(FontsFree-Net-Proxima-Nova-Bold.otf);
  }

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Proxima-Nova-Bold;
}

.container {
    background: url('background.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.form-container {
    width: 40%;
    position: absolute;
    top: 10%;
    left: 5%;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: white;
}

.form-group label {
    flex: 1;
    margin-right: 35px;
    font-size: 25px;
}

.form-group input {
    flex: 2;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

.quote-btn {
    position: absolute;
    left: 5%;
    margin-top: 85%;
    padding: 15px 30px;
    background-color: #d50000;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background-image: url('btn.png');
    background-position: center;
    background-size: cover;
}

.quote-btn:hover {
    background-color: #ff1a1a;
}

.brand-logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    text-align: right;
}

.brand-logo img {
    max-width: 150px;
}

.brand-logo p {
    font-size: 1.2em;
    color: white;
    margin-top: 5px;
}

@media only screen and (max-width: 480px) {
    .form-container {
        width: 90%;
        /* margin: 30px; */
        top: 5%;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label {
        margin-bottom: 15px;
    }

    .quote-btn {
        width: 70%;
        padding: 10px 15px;
        top: 50%;

    }

    .brand-logo img {
        max-width: 100px;
    }

    .brand-logo p {
        font-size: 0.9em;
    }
}
