@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #9B479F;
  --pink: #e83e8c;
  --red: #D9230F;
  --orange: #D9831F;
  --yellow: #ffc107;
  --green: #469408;
  --teal: #20c997;
  --cyan: #029ACF;
  --white: #fff;
  --gray: #777;
  --gray-dark: #373a3c;
  --primary: #D9230F;
  --secondary: #fff;
  --success: #469408;
  --info: #029ACF;
  --warning: #9B479F;
  --danger: #D9831F;
  --light: #fff;
  --dark: #373a3c;
  --font-family-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.btn-login {
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    color: #fff;
    background-color: #D9230F !important;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e72510), color-stop(6%, #D9230F), to(#cb210e));
    background-image: linear-gradient(#e72510, #D9230F 6%, #cb210e);
    background-repeat: no-repeat;
    -webkit-filter: none;
            filter: none;
    border: 1px solid #ba1e0d;
}

.btn-login:hover {
    color: #fff;
    background-color: #b51d0d;
    border-color: #a91b0c;
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e72510), color-stop(6%, #D9230F), to(#cb210e));
    background-image: linear-gradient(#e72510, #D9230F 6%, #cb210e);
    background-repeat: no-repeat;
    -webkit-filter: none;
            filter: none;
    border: 1px solid #ba1e0d;
}

.btn-login:focus {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}