﻿/*Leelas LOGIN CSS*/
/*body {
    /*background-color: #29B481;*/
    background-image: url("../../images/home_03.jpg");
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
    
    width: 100%;
    height: 100%;
}*/

body {
    margin: 0;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../../images/home_03.jpg"); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(3px); /* Apply blur effect */
    -webkit-filter: blur(3px); /* For older WebKit browsers */
    z-index: -1; /* Place the pseudo-element behind the content */
}

.content {
    position: relative;
    z-index: 1; /* Ensure content stays above the blurred background */
    color: white; /* Optional: Adjust content color */
    padding: 20px; /* Optional: Add some padding */
}

.login-view {
    width: 60%;
    margin: 10% auto auto;
}

    .login-view .row {
        display: flex;
    }

    .left-view {
        background: #29B481;
    }

    .login-logo {
        content: url("../../images/icons/login-logo.png");
        width: 170px;
        height: 160px;
        margin: 25px 18% 0px;
    }

    .login-tab {
        margin: 20px auto 50px;
    }

    .login-tab ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .login-tab a {
            display: block;
            background: #52d19b;
            color: white;
            padding: 8px 5px;
            width: 100%;
            border: none;
            outline: none;
            font-family: "Lato", sans-serif;
            cursor: pointer;
            transition: 0.3s;
            font-size: 17px;
            margin-left: auto;
            margin-right: auto;
            width: 10em;
            text-align: center;
        }

            .login-tab a:hover {
                background-color: #29B481;
                color: white;
                text-decoration: none;
            }

        .login-tab a.active {
            background-color: #31c487;
            color: white;
        }



.right-view {
    background: #ffffff;
}

.login-details {
}

    .login-details input[type="text"], .login-details input[type="password"] {
        width: 100%;
        outline: none;
        font-size: 16px;
        color: #3c3e44;
        padding: 20px 30px 10px 10px;
        margin: 0;
        border: none;
        border-bottom: 2px solid #cecfd3;
        -webkit-appearance: none;
        transition: 0.5s;
    }

    .login-details input:focus + placeholder {
        color: #3d2061;
    }

    .login-details input:focus {
        border-bottom: 1px solid #29B481;
        box-shadow: 0 1px 0 0 #29B481;
    }

    .login input.name {
        background: url(../images/l1.png) no-repeat 98% 67%;
    }

    .login-details input.email {
        background: url(../../images/custom/email_icon.png) no-repeat 98% 67%;
    }

    .login-details input.password {
        background: url(../../images/custom/password_icon.png) no-repeat 98% 67%;
    }

.login-content {
    padding: 0px 25px;
    margin-top: 10%;
    padding-bottom: 10%;
}


.login-button {
    font-size: 13px;
    color: #29B481;
    background: #fff;
    border: 2px solid #29B481;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    padding: 6px 13px;
    width: 100px;
    margin-top: 45px;
}

    .login-button:hover {
        background: #29B481;
        color: #fff;
        transition: 0.5s all ease;
        -webkit-transition: 0.5s all ease;
        -moz-transition: 0.5s all ease;
        -o-transition: 0.5s all ease;
        -ms-transition: 0.5s all ease;
    }


.spinner {
    border: 5px solid #29B481;
    border-radius: 50%;
    border-top: 5px solid white;
    width: 25px;
    height: 25px;
    margin-top: 45px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}



.footer-view {
    margin: 10% auto 0;
    display: flex;
}

.footer-left {
    float: left;
    padding-left: 30px;
}

.footer-right {
    float: right;
    padding-right: 30px;
}

.footer-logo {
    padding-top: 5px;
    color: #fff;
}



@media(max-width:768px) {
    .container {
        padding-top: 20px;
    }

    .login-view {
        width: 90%;
        margin: 10% auto auto;
    }

        .login-view .row {
            display: block;
        }

    .login-logo {
        content: url("../../images/icons/login-logo.png");
        width: 125px;
        height: 115px;
        margin: 25px 28% 0px;
    }

    .login-tab {
        margin: 5px auto 10px;
        padding-bottom: 10px;
    }

    .right-view {
        margin-top: -30px;
    }

    .footer-left {
        float: left;
        padding-left: 0px;
    }

    .footer-right {
        float: right;
        padding-right: 0px;
    }
}
