﻿@import url('https://fonts.googleapis.com/css2?family=Varela-round&display=swap');

.login-block {
    background: transparent;
    float: left;
    width: 100%;
}

.banner-img {
    width: 80%;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-sec {
    background-color: transparent;
    background-size: cover;
    min-height: 500px;
    border-radius: 6px;
    padding: 0;
}

.container {
    background: transparent;
    border-radius: 6px;
}

.login-sec {
    padding: 50px 30px;
    position: relative;
    margin-top: 120px;
}

    .login-sec .copy-text {
        position: absolute;
        width: 80%;
        bottom: 20px;
        font-size: 13px;
        text-align: center;
    }

        .login-sec .copy-text i {
            color: #FEB58A;
        }

        .login-sec .copy-text a {
            color: #E36262;
        }

    .login-sec h2 {
        margin-bottom: 30px;
        font-weight: 800;
        font-size: 30px;
        color: #DE6262;
    }

        .login-sec h2:after {
            content: " ";
            width: 130px;
            height: 3px;
            /* background: #43968b; */
            background: #006587;
            display: block;
            margin-top: 20px;
            border-radius: 3px;
            margin-left: auto;
            margin-right: auto
        }

.btn-login {
    /* background: #43968b; */
    background: #006587;
    color: #fff;
    font-weight: 600;
}

    .btn-login:hover {
        /* background: #43968b; */
        background: #5085A3;
        color: #fff;
        font-weight: 600;
    }

.banner-text {
    width: 70%;
    position: absolute;
    bottom: 40px;
    padding-left: 20px;
}

    .banner-text h2 {
        color: #fff;
        font-weight: 600;
    }

        .banner-text h2:after {
            content: " ";
            width: 100px;
            height: 5px;
            background: #FFF;
            display: block;
            margin-top: 20px;
            border-radius: 3px;
        }

    .banner-text p {
        color: #fff;
    }

.ax-icon {
    height: 120px;
    justify-content: center;
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

#footer {
    position: fixed;
    left: 200px;
    bottom: 0;
    margin: 0;
    width: 65%;
    height: 60%;
    background: url(./img/SVG/ic_1.svg) no-repeat top left;
    background-size: 50%;
}

.welcome-text {
    font-family: Varela Round;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    letter-spacing: -.02em;
    line-height: 1.3em;
    text-transform: none;
}

@media all and (max-width: 499px) {
    .login-sec {
        margin-top: 0px;
    }
}

/* Customize the label (the container) */
.axessa-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .axessa-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border: 1px #d3d3d3 solid;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.axessa-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.axessa-checkbox input:checked ~ .checkmark {
    background-color: #006587;
}

/* When the checkbox is disabled, add a blue background */
.axessa-checkbox input:disabled ~ .checkmark {
    background-color: #999;
}