﻿
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../img/BACKGROUND-WEB.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    body::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(37, 52, 111, 0.3);
    }

/***************************** LOGIN ****************************************/
.container-login {
    box-shadow: 0px 0px 10px red;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    background-color: whitesmoke;
    color: white;
    height: 380px;
    width: 340px;
    padding: 20px;
}

.form-container #ImgLogo {
    position: center;
    display: flex;
    width: 180px;
    height: auto;
    align-items: center;
}


.form-container .input-box {
    position: relative;
    display: flex;
    align-items: center;
    border-color: red;
}

.input-box input {
    width: 100%;
    outline: 0;
    border: 2px solid #cecece;
    border-radius: 50px;
    padding: 8px 8px 8px 15px;
    background: transparent;
    color: red;
    font-size: 16px;
}


input::placeholder {
    color: #EF7E00;
}

.input-box img {
    position: absolute;
    right: 25px;
}


.button {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

    .button button {
        border: none;
        background-color: red;
        border-radius: 50px;
        color: white;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        padding: 10px 0;
        outline: none;
        width: 100%;
    }

        .button button:hover {
            background-color: #a40101;
        }




.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
    border-top: .125rem solid red;
    border-bottom: .125rem solid red;
    border-left: .125rem solid red;
    box-shadow: -1px 0px 0px 0px red, 0px 1px 0px 0px red, 0px -1px 0px 0px red;
}

.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
    border-bottom: .125rem solid;
    border-color: red;
    border-top: none;
    box-shadow: 0 1px 0 0 red;
}

.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
    border-color: currentcolor currentcolor currentcolor #E4A11B;
    border-bottom: .125rem solid red;
    border-right: .125rem solid red;
    border-top: .125rem solid red;
    box-shadow: 1px 0 0 0 red, 0 -1px 0 0 red, 0 1px 0 0 red;
}

.form-outline .form-control:focus ~ .form-label {
    color: #25346F;
}

.form-outline .form-control.active ~ .form-notch .form-notch-middle, .form-outline .form-control:focus ~ .form-notch .form-notch-middle {
    border-top: 1px transparent;
}



.form-check .form-check-input:checked {
    background-color: red !important;
    border-top: .125rem solid #ff0000;
    border-bottom: .125rem solid #ff0000;
    border-left: .125rem solid #ff0000;
    border-right: .125rem solid #ff0000;
}

.form-check-input:checked:focus:before {
    box-shadow: 0px 0px 0px 13px #ff0000;
}


.input-group-text {
    border: none;
}
    /***************************** END LOGIN ****************************************/

