﻿/*File created by Vinay*/
.body-bg {
    /*background: linear-gradient(300deg, #ffffff, #10ffde, #00a4e3);
    background-size: 180% 180%;
    animation: gradient-animation 9s ease infinite;*/
    background-color: #413b2f;
    background-color: #330000;
    background-image: url(../images/rose-petals.svg);
    background-attachment: fixed;
    background-size: cover;
    margin-bottom: 35px;
    border-color: #4c0314;
    border-radius: 0;
    border: none;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.leadersec {
    display: flex;
    margin: 0px auto;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #d9d9d9;
    padding-top: 10px;
}
.leadersec1 {
    border: 1px solid #ccc;
    padding: 5px 10px;
    background-color: #f0fcff;
    border-radius: 8px;
    width: 220px;
    text-align: center;
}
 .leadersec1 img {
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 70px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header {
    margin-top: 20px;
}

.leadersec1 h5 {
    margin: 3px 0px 0px;
    font-size: 14px;
    font-weight: 600;
    color: #a80136;
}

.leadersec1 p {
    margin: 3px 0px 0px;
    font-size: 12px;
    color: #858585;
}

     .leadersec1 h2 {
        margin-top: 10px;
        font-size: 16px;
        font-weight: bold;
    }

.login-container {
    margin-top: 20px;
    display: inline-block;
    text-align: left;
    border: 3px solid;
    border-top-color: #683704;
    border-left-color: #683704;
    border-right-color: #683704;
    border-bottom-color: #683704;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    width: 480px;
    box-shadow: 1px 2px 9px 4px #4c042b;
    -webkit-box-shadow: 1px 2px 9px 4px #4c042b;
    -moz-box-shadow: 1px 2px 9px 4px #4c042b;
    -ms-box-shadow: 1px 2px 9px 4px #4c042b;
    -o-box-shadow: 1px 2px 9px 4px #4c042b;
    background: linear-gradient(300deg, #fdffc5, #e1f0ff, #fff);
    background-size: 180% 180%;
    animation: gradient-animation 4s ease infinite;
}
    .login-container .logomain {
        display: block;
        margin: 0px auto 12px;
        height: 70px;
    }
    .login-container .login-boxarea {
        padding: 5px 10px;
        border: 1px solid #ccc;
        margin: 10px auto 0px;
        border-radius: 5px;
        background-color: #f0fcff;
    }
        .login-container .login-boxarea h3 {
            font-size: 16px;
            font-weight:700;
            margin-bottom: 5px;
            margin-top:5px;
            text-align: center;
        }

.captcha-container {
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-bottom:10px;
}

    .captcha-container input[type="text"] {
        width: 120px;
        margin-right: 10px;
    }

    .captcha-container img {
        cursor: pointer;
        border: 3px solid #683704;
        padding: 1px;
        height: 43px;
        margin-right: 5px;
        border-radius: 4px;
    }

.btn-login {
    width: 100%;
    background-color: #ff0000;
    border: none;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
}

    .btn-login:hover {
        background-color: #cc0000;
    }

.home-link {
    margin-top:10px;
    padding-top: 5px;
    border-top:1px solid #ccc;
    display: block;
    font-size: 12px;
    color: #0066cc;
    text-decoration: none;
    text-align:center;
}

    .home-link:hover {
        text-decoration: underline;
    }
    /**/
input[type="text"] {
    width: 100%;
    border: 2px solid #683704;
    border-radius: 4px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
}

    input[type="text"]:focus {
        border-color: dodgerBlue;
        box-shadow: 0 0 8px 0 dodgerBlue;
    }

.inputWithIcon input[type="text"] {
    padding-left: 40px;
}
/**/
input[type="password"] {
    width: 100%;
    border: 2px solid #683704;
    border-radius: 4px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
}

    input[type="password"]:focus {
        border-color: dodgerBlue;
        box-shadow: 0 0 8px 0 dodgerBlue;
    }

.inputWithIcon input[type="password"] {
    padding-left: 40px;
}

.inputWithIcon {
    position: relative;
}

    .inputWithIcon i {
        position: absolute;
        left: 0;
        top: 8px;
        padding: 9px 8px;
        color: #aaa;
        transition: 0.3s;
    }

    .inputWithIcon input[type="text"]:focus + i {
        color: dodgerBlue;
    }

    .inputWithIcon.inputIconBg i {
        background-color: #683704;
        color: #fff;
        padding: 19px 7px;
        width: 38px;
        height: 40px;
        border-radius: 4px 0 0 4px;
    }

    .inputWithIcon.inputIconBg input[type="text"]:focus + i {
        color: #fff;
        background-color: dodgerBlue;
    }
