/* FCA Font - Regular */
@font-face {
  font-family: 'FCA-Font';
  font-style: normal;
  font-weight: 300;
  src: local('FCA Font'),
       url('../fonts/FCA-Fonts/FCA20230413-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/FCA-Fonts/FCA20230413-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* FCA-Font - Bold */
@font-face {
  font-family: 'FCA-Font';
  font-style: normal;
  font-weight: 700;
  src: local('FCA-Font Bold'),
       url('../fonts/FCA-Fonts/FCA20230413-Bold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/FCA-Fonts/FCA20230413-Bold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
    accent-color: #00462D;
  }

body {
	margin: 0;
	background: url(../img/page-bg-green.png) no-repeat center center fixed;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
			background-size: cover;
	font-family: "FCA-Font", Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	
}

@media all and (min-width:1200px){
	.container {
		max-width: 1020px;
	}
}

footer {
	background: #4c744b;
	font-size: 1em;
}

a, 
a:active, 
a:focus, 
a:visited {
	color: #ce1719;
}
a:hover {
	color: #ce1719;
	text-decoration: underline;
}

.card-header {
	margin-bottom: 0;
	background: #ce1719;
}
.card-title {
    margin-bottom: 0;
	color: #efefef;
    font-family: "FCA-Font", Arial, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

small {
	font-size: 85%;
}

label {
	font-weight: 600;
}

label input[type="checkbox"] {
	margin-right: 0.3rem;
}

.login-remember{
    font-family: "FCA-Font", Arial, sans-serif;
	font-weight: bold;
}

.btn-primary.active, 
.btn-primary.focus, 
.btn-primary:focus, 
.btn-primary:hover,
.btn-reg.active, 
.btn-reg.focus, 
.btn-reg:focus, 
.btn-reg:hover {
	background-color: #a60103;
}
.btn-primary, .btn-reg {
	width: 50%;
    min-width: 180px;
    /*
	width: 180px;
    */
    transition: .1s ease;
	text-transform: uppercase;
	background-color: #ce1719;
    border: 0;
    color: #fff;
    font-family: "FCA-Font", Arial, sans-serif;
}
.btn.focus, 
.btn:focus, 
.btn:hover {
	background-color: #a60103;
	text-decoration: none;
	border: 0;
}

.choose {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
    /*
	width: 180px;
	*/
}
.choose span {
    flex-grow: 2;
    border-top: 1px solid #ced4da;
}
.choose span:nth-child(2) {
    flex-grow: 1;
    text-align: center;
    border: 0;
    text-transform: uppercase;
    color: #666;
}

/* CARD */

:first-child.card-header {
    border-radius: 0;
}
.card {
    border: 0;
    border-radius: 0;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
}

.form-control:focus {
    border-color: #ce1719;
    box-shadow: 0px 0px 0px 0.2rem rgba(0,121,76,0.25);
}

.form-control {
	line-height: 1;
	border-radius: 0;
}

footer {background: white!important; background-color: white!important;}
.text-white {color: #000 !important;}
.card-title {text-transform: inherit!important;;}
.card {box-shadow: none!important; z-index:0;}
.btn-primary, .btn-reg {text-transform: inherit!important; background-color: inherit;}
.btn {position:relative;}
.btn::after {
  content: "";  
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width:0%;
  height: 100%;
  transform: skew(-45deg) !important;  transition: width 200ms ease-out; background: #062D22;    border: 0;  }
.btn:hover {background-color: inherit!important;}
.btn:hover::after {width: 100%; transform: skew(-45deg);  background: #062D22;  transition: width 200ms ease-out;}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #00462D;
  transition: width 200ms ease-out;
  transform: skew(-45deg);
}
.btn-primary:not(:disabled):not(.disabled):active {background-color: inherit; border-color: none;}
.btn:focus {background-color: inherit;}
.btn-primary.focus, .btn-primary:focus {box-shadow: inherit;box-shadow: none;}
.btn.btn-primary:focus-visible {outline:0;}
.btn-primary:not(:disabled):not(.disabled):active:focus {box-shadow: none;}
.btn.focus, .btn:focus {
    box-shadow: none;
  }