/*
 * ===========================================================================================
 * STYLE
 * ===========================================================================================
*/

/* Backgound */
.login-page {
    margin-top: -20px;
    background-color: #e1e1ea;
    padding-left: 5px;
    padding-top: 10px;
    /* background-image                     : url("/images/bg.jpg"); */
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: auto;
}

/* Login logo */
.logo-img {
    /* width:200px; */
    width: 150px;
}
.login-logo {
    margin-bottom: 40px;
}

/* Login box */
.login-box {
    margin-top: 100px;
    margin-bottom: 100px;
}
.login-box-body {
    border-radius: 5px !important;
}

/* iCheck */
.icheck div {
    margin-top: -2px;
}
.icheck {
    margin-top: 6px;
    margin-bottom: 12px;
}

/* Primary button */
.btn-primary {
    border-radius: 5px !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Fix input icon placement */
.fas.form-control-feedback {
    margin-top: 10px;
}

/* Fix input error message */
.help-block {
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0;
}

/* Fix textarea */
textarea {
    resize: none;
}

/* Remove bullet from ajax notification */
.alert-ajax {
    list-style-type: none;
    display: none;
}

/* Sweet alert */
.swal2-popup {
    font-size: 24px !important;
    width: 480px !important;
    padding: 20px !important;
}
.swal2-icon {
    font-size: 18px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}
.swal2-title {
    font-size: 20px !important;
    margin-bottom: 5px !important;
}
.swal2-content {
    font-size: 16px !important;
    line-height: 120% !important;
    margin-bottom: 0 !important;
}
.swal2-actions {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}
.swal2-confirm {
    margin: 0 2.5px !important;
}
.swal2-cancel {
    margin: 0 2.5px !important;
}
.swal2-close {
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 4px 4px 0 0 !important;
}
.swal2-close:focus {
    outline: none !important;
}

/*
 * ===========================================================================================
 * COLOR STYLE
 * ===========================================================================================
*/

/* Primary button */
.btn-primary {
    background-color: #632c96;
    border-color: #4d187e;
    color: white !important;
}
.btn-primary:hover {
    background-color: #4d187e;
    border-color: #390964;
}
.btn-primary:active {
    background-color: #4d187e !important;
    border-color: #390964 !important;
}
.btn-primary:focus {
    background-color: #4d187e !important;
    border-color: #390964 !important;
}

/* Links */
a {
    color: #632c96;
}
a:hover {
    color: #4d187e;
}
a:focus {
    color: #4d187e;
}

/* Form higlight color */
.form-control:focus {
    border-color: #632c96;
    box-shadow: none;
}

/* Change alert colors */
.alert.alert-success {
    background-color: #dff0d8 !important;
    border-color: #d0e9c6 !important;
    color: #3c763d !important;
}
.alert.alert-info {
    color: #31708f !important;
    background-color: #d9edf7 !important;
    border-color: #bce8f1 !important;
}
.alert.alert-warning {
    color: #8a6d3b !important;
    background-color: #fcf8e3 !important;
    border-color: #faebcc !important;
}
.alert.alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
}
