* {
    margin: 0;
    border: 0;
}

html,
body,
.container {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.center-box {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.customer-logo {
    width: 100%;
    height: 200px;
    position: relative;
    margin-bottom: 50px;
}

    .customer-logo img {
        object-fit: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

.form-box {
    display: flex;
    flex-direction: column;
}

    .form-box > * {
        margin-bottom: 20px;
    }

    .form-box input {
        height: 25px;
        border: 1px solid black;
        border-radius: 5px;
        padding: 10px;
    }


.input-container {
    display: flex;
    flex-direction: row;
    border: 1px solid #374669;
    border-radius: 5px;
    background: #fff;
    align-items: center;
    overflow: hidden;
}

    .input-container input {
        outline: none;
        border: none;
        font-size: 1em;
        padding: .5em;
        width: 100%;
    }

    .input-container .fa {
        padding: 10px;
        cursor: pointer;
    }

.btn-primary {
    padding: 10px;
    border-radius: 20px;
}

    .btn-primary:hover {
        cursor: pointer;
        background-color: aliceblue;
    }


.button-link {
    display: inline-block;
    padding: 10px;
    background-color: #F0F0F0;
    color: black;
    text-decoration: none;
    border-radius: 2px;
}



.error-box {
    width: 100%;
    color: red;
    padding-bottom: 20px;
}
