﻿

body {
    background-image: linear-gradient(135deg, #6a0d70 10%, #1904E5 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Open Sans", sans-serif;
    color: #333333;
}

.box-form {
    margin: 0 auto;
    width: 80%;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex: 1 1 100%;
    align-items: stretch;
    justify-content: space-between;
    box-shadow: 0 0 20px 6px #090b6f85;
}



.box-form div {
    height: auto;
}

.box-form .left {
    color: #FFFFFF;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../../Images/img-login.jpg");
    overflow: hidden;
    max-width:70%;
}

    .box-form .left .overlay {
        padding: 30px;
        width: 100%;
        height: 100%;
        background: #5961f9ad;
        overflow: hidden;
        box-sizing: border-box;
    }

        .box-form .left .overlay h1 {
            font-size: 8vmax;
            line-height: 1;
            font-weight: 900;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .box-form .left .overlay span p {
            margin-top: 30px;
            font-weight: 900;
        }
        .box-form .left .overlay .message {
            margin-bottom: 15%;
        }

        .box-form .left .overlay span a {
            background: #3b5998;
            color: #FFFFFF;
            margin-top: 10px;
            padding: 14px 50px;
            border-radius: 100px;
            display: inline-block;
            box-shadow: 0 3px 6px 1px #042d4657;
        }
        .box-form .left .overlay span .site {
            background: #8f8f8f75;
            margin-right: 30px;
        }

        .box-form .left .overlay span a:last-child {
            background: red;
            margin-left: 30px;
        }
        .box-form .left .overlay span a i {
            font-size:1.5rem;
        }

.box-form .right {
    padding: 40px;
    overflow: hidden;
    width: 30%;
}


.box-form .right img {
    width:100%;
}

.box-form .right p {
    font-size: 14px;
    color: #B0B3B9;
}

.box-form .right .inputs {
    overflow: hidden;
}

.box-form .right input {
    width: 100%;
    padding: 10px;
    margin-top: 25px;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 2px solid #B0B3B9;
}

.box-form .right .remember-me--forget-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .box-form .right .remember-me--forget-password input {
        margin: 0;
        margin-right: 7px;
        width: auto;
    }

.box-form .right button {
    float: right;
    color: #fff;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    display: inline-block;
    border: 0;
    outline: 0;
    box-shadow: 0px 4px 20px 0px #49c628a6;
    background-image: linear-gradient(135deg, #70F570 10%, #49C628 100%);
    cursor:pointer;
}

label {
    display: block;
    position: relative;
}
.save-user {
    width: 100%;
}
.save-user input {
    width: 20px !important;
    height: 20px !important;
}
    .save-user span {
        width: 100%;
    }


.validation-summary-errors ul {
    font-size: .9rem;
    padding: 0;
    margin: 0;
    border-left: 5px solid red;
    margin-top: 3%;
    border: 1px solid #c98e8e;
    border-radius: 10px;
    padding: 5px;
    border-left: 8px solid #c98e8e;
}

.validation-summary-errors ul li {
    list-style: none;
    color: #e71414;
    padding-left: 15px;
}
.sapcon-label {
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: 0px solid rgba(255, 255, 255, 1);
    text-shadow: 5px 5px 0px rgba(13, 12, 12, 0.6);
}


@media (max-width: 980px) {
    .box-form {
        flex-flow: wrap;
        text-align: center;
        align-content: center;
        align-items: center;
    }
}

@media (max-width: 980px) {
    .box-form .right {
        width: 100%;
    }
    
}

/*// X-Small devices (portrait phones, less than 576px)*/
/*// No media query for `xs` since this is the default in Bootstrap*/

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 375px) {
    .box-form .left {
        max-width: 100%;
    }
    .box-form {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .box-form .left {
        max-width: 100%;
    }
    .box-form {
        width: 80%;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .box-form .left {
        max-width: 100%;
    }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .box-form .left .overlay span a {
        padding: 10px 30px;
    }
    .box-form .right {
        width: 60%;
    }
}

/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .box-form .left .overlay span a {
        padding: 14px 50px;
    }

    .box-form .right {
        width: 35%;
    }
}

/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    
}

