@font-face {
    font-family: Foco;
    src: url('fonts/Foco_Lt.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Foco";
    src: url('fonts/Foco_It.ttf');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Foco";
    src: url('fonts/Foco-Bold.otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Foco";
    src: url('fonts/Foco_BdIt.ttf');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Foco";
    src: url('fonts/Foco_Blk.ttf');
    font-weight: bolder;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url('fonts/Poppins-Black.otf');
    font-weight: bolder;
    font-style: normal;
}

.bg-image {
    background-image: url('img/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

body {
    font-family: foco;
}

h5 {
    font-family: foco;
    font-weight: bold;
    color: #004990;
}

.btn-custom {
    background-color: #0199DE;
    font-family: foco;
    font-weight: bolder;
    text-transform: none;
}

.btn-custom:hover {
    background-color: #fff;
    color: #004990;
    font-weight: bold;
}

a {
    font-weight: 500;
}

.container {
    position: relative;
    height: 100vh;
    width: 90%;
    max-width: 90%;
}

img.logo {
    width: 20%;
    max-width: 350px;
    margin-top: 3%;
}

img.user {
    width: 30%;
    max-width: 100px;
}

img.shape1 {
    position: absolute;
    bottom: 0;
    max-width: 90vw;
}

img.shape2 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 90vw;
}

.row.login-panel {
    position: relative;
    padding-top: 10%;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.card {
    padding: 15px;
    opacity: 1;
    border-radius: 15px;
    box-shadow: none;
    padding-left: 10%;
    padding-right: 10%;
}

.row .col img.icon {
    width: auto;
}

.row.field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #004990;
}

/* label color */
.input-field label,
.input-field i.material-icons {
    color: #004990;
    font-weight: 500;
}

/* label focus color */
.input-field input[type=text]:focus+label,
.input-field i.material-icons {
    color: #004990;
}

/* label underline focus color */
.input-field input[type=text]:focus {
    border-bottom: none;
    box-shadow: none;
}

/* valid color */
.input-field input[type=text].valid,
.input-field input[type=password].valid,
input:not(.browser-default):focus:not([readonly]) {
    border-bottom: none;
    box-shadow: none;
}

input:not(.browser-default):focus:not([readonly])+label {
    color: #004990 !important;
}

/* invalid color */
.input-field input[type=text].invalid,
.input-field input[type=password].invalid {
    border-bottom: none;
    box-shadow: none;
    margin: 0;
    -webkit-box-shadow: none;
}

/* icon prefix focus color */
.input-field .prefix.active {
    color: #004990;
}

/*  */
input[type=text]:not(.browser-default):focus:not([readonly]),
input[type=password]:not(.browser-default):focus:not([readonly]) {
    border-bottom: none;
    box-shadow: none;
}


.label_error {
    font-weight: bold;
    color: #004990;
}

a {
    color: #004990;
}