:root {
    --input-padding-x: .75rem;
    --input-padding-y: .75rem;
}

html,
body {
    height: 100%;
    font-family: "Roboto", sans-serif;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1px;
    padding-bottom: 40px;
    /* background: url(../img/hero-bg.png) center bottom no-repeat; */
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 40px);
    /* background: url(../img/hero-bg.png) center bottom no-repeat; */
    background-size: 100%;
    position: relative;
    margin-top: 40px; 
}

a:hover {
    color: #DC0DA9;
}

a {
    color: #B817A4;
}

.btn {
    background-color: #DC0DA9;
    border: 2px #B817A4 solid;
    color: black;
}

.btn:hover {
    background-color: #B817A4;
    border: 2px black solid;
    color: white;
}

.form-control, .form-control:active, .form-control:focus, .form-control:default {
    border: 2px #DC0DA9 solid;
}

.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
    background: rgba(255, 255, 255, 0.6);
}

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
    padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #777;
}

  /* Edge
  -------------------------------------------------- */
@supports (-ms-ime-align: auto) {
    .form-label-group > label {
    display: none;
    }
    .form-label-group input::-ms-input-placeholder {
    color: #777;
    }
}

  /* IE
  -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
    display: none;
    }
    .form-label-group input:-ms-input-placeholder {
    color: #777;
    }
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: #B817A4;
    box-shadow: 0 1px 1px transparent inset, 0 0 8px transparent;
    outline: 0 none;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #B817A4;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #B817A4;
}

input[type="checkbox"], label {
    cursor: pointer !important;
}

select{
    height: 45px !important;
}

@media only screen and (max-width : 320px) {
    body{
        margin-top: 60px !important;
        /* margin-bottom: 40px; */
    }
}

@media only screen and (min-width : 480px) {
    body{
        margin-top: 123px !important;
        margin-bottom: 123px;
    }
}

@media only screen and (min-width : 481px) {
    body{
        margin-top: 0px !important;
        margin-bottom: 0px;
    }
}

.footer-copyright {
    background-color: #B817A4;
}
