﻿*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

.nv-body, .nv-dashboard {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: url(/Content/Images/shipping-bg.jpg);
    background-size: cover;
}

.nv-signin-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-card-signin {
    height: 560px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff; /*rgba(255, 255, 255, 0.5)*/
}

.nv-logo {
    font-weight: 700;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    text-transform: lowercase;
    color: #5b47fb;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    position: relative;
    top: -2px;
}

.nv-signin-header h2 {
    font-weight: 500;
    color: #5b47fb;
    letter-spacing: -1px;
}

.nv-signin-header h4 {
    font-weight: 400;
    color: #1c273c;
    margin-bottom: 25px;
}

.btn, .sp-container button {
    border-width: 0;
    line-height: 1.538;
    padding: 9px 20px;
    border-radius: 0;
    transition: none;
    min-height: 38px;
}

.btn-nv-primary:hover {
    color: #fff;
    background-color: #3a22fa;
    border-color: #1f05f0;
}

.nv-signin-header .btn, .nv-signin-header .sp-container button, .sp-container .nv-signin-header button {
    margin-top: 25px;
}

.btn-nv-primary {
    color: #fff;
    background-color: #5b47fb;
    border-color: #452efa;
}

.nv-signin-footer p:first-child {
    margin-bottom: 5px;
}

.nv-signin-footer p {
    color: #7987a1;
}

.nv-signin-footer a {
    color: #1c273c;
    font-weight: 700;
}

.nv-navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 900;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.nv-card-dev-registration {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}

.dev-registration-header {
    border-bottom: 1px solid #c1c1c1;
    margin: -30px -30px 20px -30px;
    padding: 15px;
}

.font-size-18px{
    font-size: 18px
}
@media (min-width: 480px) {
    .nv-card-signin {
        border: 1px solid #cdd4e0;
        width: 360px;
        padding: 30px 35px;
    }
}
