﻿body,
html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #222;
}

.logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 999;
}

.arrow-back {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
}

.btn {
    min-width: 240px;
    border-radius: 30px;
    padding: 10px 30px;
    background-color: #1143A3;
    border-color: #1143A3;
    color: #fff;
}

    .btn:hover {
        background-color: #0b2e72;
        border-color: #0b2e72;
        color: #fff;
    }

.btn-border-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

    .btn-border-white:hover {
        background-color: #fff;
        border-color: #fff;
        color: #222;
    }

.btn-border-blue {
    background-color: transparent;
    border-color: #1143A3;
    color: #1143A3;
}

.form-control {
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
}

.input-group-text {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #c7c7c7;
}

.form-control:focus {
    box-shadow: none;
    border-color: #c7c7c7;
}

/* .cover {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #1143A3;
	z-index: 99;
	color: #fff;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
} */

.cover {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .cover .text {
        color: #fff;
    }

.card {
    max-width: 500px;
    box-shadow: 0 0 1.17592rem 0 rgba(0,0,0,.1);
    padding: 50px;
    border: 0;
    border-radius: 30px;
}

.modal-header {
    border-bottom: 0;
    padding: 30px 30px 30px 30px;
}

.modal-body {
    padding: 0 50px 50px 50px;
}

.bg-full {
    width: 100%;
    min-height: 100vh;
}

@media all and (max-width: 991px) {
    .btn {
        min-width: auto;
    }

    .btn-account {
        min-width: 200px;
    }

    .cover {
        display: none !important;
    }

    .member {
        width: 100%;
        height: 100vh !important;
        background-image: url('../images/bg-signin.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        .member.fp {
            width: 100%;
            height: 100vh !important;
            background-image: url('../images/bg-account.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
}

@media all and (max-width: 575px) {
    .card {
        padding: 20px;
    }
}

.validation-summary-errors {
    color: red !important;
}

.field-validation-error {
    color: #fd3995;
}
.has-length .input-group-text:not([class^="bg-"]):not([class*=" bg-"]) {
    background: none !important;
    color: #000 !important;
}

.swal2-styled.swal2-confirm {
    background-color: #1143A3;
}