/* Page */
body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #f5f7fa !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

header {
    height: 70px;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #cbd0dd;
}
header .logo img {
    height: 50px;
}

/* Content */
.content {
    padding: 1.25rem 1.75rem;
    background: #fdfdfd;
    border: 1px solid #dedede;
    border-radius: .25rem;
}
.content h3 {
    font-weight: bold;
}

/* Form */
.form-control {
    width: 50% !important;
}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    width: 250px !important;
}