﻿body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f6f2fc, #ede9f9);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/Watermarklogo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-position: -120px 287px;
    background-attachment: fixed;
    background-size: 600px 511px;
    position: relative;
    background-color: #8a2be221;
}



/* Left login panel with watermark */
.login-left {
    /* padding: 60px 50px;
      position: relative;
     height: auto;
      overflow: hidden; */
    /* background: linear-gradient(135deg, #f8f6ff, #efe9fb); */
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: unset;
}

    /* Watermark logo in background */
    .login-left::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("../assets/images/Watermarklogo.png") no-repeat center;
        background-size: cover;
        opacity: 0.08; /* faint watermark effect */
        z-index: 0;
    }

    /* Keep contents above watermark */
    .login-left * {
        position: relative;
        z-index: 1;
    }

    .login-left img.logo {
        width: 130px;
        margin-bottom: 30px;
    }

.login-title {
    font-size: 24px;
    font-weight: 700;
    color: #5b2fdb;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 10px;
    height: 50px;
    background-color: #d4bef48a;
    border: none;
    padding-left: 15px;
    font-size: 15px;
}

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(112, 47, 219, 0.2);
        background-color: #f6f2fc;
    }

.btn-login {
    background-color: #6d35f2;
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
}

    .btn-login:hover {
        background-color: #5b2fdb;
    }

.forgot {
    font-size: 14px;
    display: block;
    margin-top: 12px;
    text-align: right;
    color: #5b2fdb;
    text-decoration: none;
}

    .forgot:hover {
        text-decoration: underline;
    }

.login-right {
    /* background: linear-gradient(135deg, #f8f6ff, #efe9fb); */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../assets/images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .login-right h2 {
        font-size: 24px;
        font-weight: 700;
        color: #5b2fdb;
        margin-bottom: 15px;
    }

    .login-right p {
        font-size: 15px;
        color: #555;
        margin-bottom: 25px;
    }

    .login-right img {
        max-width: 90%;
        height: auto;
    }


@media(max-width: 768px) {
    .login-left, .login-right {
        padding: 30px 20px;
    }

        .login-right h2 {
            font-size: 20px;
        }
}

.panel-default {
    background: #ffffff1a;
    backdrop-filter: blur(5px);
    border: none;
    box-shadow: 10px;
    color: #6d35f2;
    box-shadow: 0px 0px 15px 8px #d1b6ff2b;
    padding: 39px 10px 10px 10px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flow;
}

.formstyle {
    padding: 30px;
}

.imgback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-position: center;
    background-color: #ad9dbc00;
    background: #8a2be22e;
    filter: blur(48px);
    background-image: url('../assets/images/background.png');
}

