button.btn.btn-default,
.container-fluid,
.navbar-fixed-top,
.panel-heading {
    display: none;
}

.panel-body {
    padding: 0;
}

main {
    width: 100%;
    text-align: center;
}

.row {
    display: flex;
    justify-content: center;
    margin: auto;
}

.page-header,
.login-tabs {
    margin: 5rem auto 3rem auto;
}

.page-header {
    padding-bottom: 9px;
    border-bottom: 0;
}

h1 {
    color: #2D2D2D;
    font: 700 4rem "Open Sans";
}

.welcome-text {
    color: #6E6E6E;
    font-size: 1.5rem;
}

.panel.panel-default {
    margin-bottom: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Forms */
form .form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 4rem;
}

form .form-group:nth-child(3) {
    align-items: center;
    gap: 2.5rem;
}

form label {
    color: #2D2D2D;
    font: 600 1.5rem "Open Sans";
    text-align: left;
}

form .form-control {
    padding: .75rem .625rem;
    border: 1px solid #919191;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.retrieve-password-button {
    font-size: 1.3rem;
}

.retrieve-password-button:hover {
    text-decoration: none;
}

.retrieve-password-button,
.signup-text a {
    color: #0951AD;
}

.signup-text {
    font-size: 1.5rem;
}

/* Primary button */
.btn.btn-primary {
    display: flex;
    justify-content: center;
    padding: 1.5rem 5rem;
    border-radius: 1rem;
    background: #0951AD;
    font: 600 1.5rem "Open Sans";
}

.btn.btn-primary:hover {
    background: #00085c;
}

/* Login Tabs */
.login-tabs {
    display: flex;
    justify-content: center;
    max-width: 380px;
    border-bottom: 1px solid #d9d9d9;
}

.login-tabs .tab {
    flex: 1;
    position: relative;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: color .2s ease;
}

.login-tabs .tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background-color .2s ease;
}

.login-tabs .tab.active::after {
    background: #333;
}

.login-tabs .tab:hover {
    color: #0951AD;
}

.login-tabs .tab:hover::after {
    background: #0951AD;
}

/* Layout */
body {
    display: flex;
    flex-direction: row;
}

body a {
    color: red;
}

footer.footer {
    text-align: center;
        padding-left: 0px;
}

/* Laptop */
@media screen and (min-width: 694px) and (max-width: 1300px) {


    body {
    margin-top: 20px;
}

    .login-tabs,
    .page-header {
        margin: 3rem auto 2rem auto;
    }


      h1 {
        font-size: 3.2rem;
    }

    .row {
            max-width: 800px;
    }

    .welcome-text {
        font-size: 1.3rem;
    }

    form {
        max-width: 500px;
        margin: 0 auto;
    }

    form label {
        font-size: 1.3rem;
    }

    form .form-control {
        padding: 0.9rem;
    }

    .retrieve-password-button {
        font-size: 1.1rem;
    }

    .signup-text {
        font-size: 1.3rem;
    }

    .btn.btn-primary {
        padding: 1.25rem 4rem;
        font-size: 1.3rem;
    }

    .login-tabs {
        max-width: 340px;
    }

    .login-tabs .tab {
        font-size: 16px;
    }
}

/* Mobile */
@media screen and (max-width: 693px) {

    body {
        flex-direction: column;
            margin-top: 20px;
    }
      


    .row {
        display: inline;
    }

    form .form-control {
        height: 45px;
        padding: 1rem;
    }

    .welcome-text,
    .retrieve-password-button,
    .btn.btn-primary {
        font-size: 2rem;
    }

    form label {
        font-size: 1.8rem;
    }

    .retrieve-password-button {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 4rem;
    }
}