﻿body {
    font-family: Arial;
    color: #3B3B3B;
    background: linear-gradient(135deg, #0f0c29, #302b63, #6246C0);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(15, 10, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 450px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .login-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: #fff;
        z-index: -1;
        border-radius: 22px;
        animation: borderAnimation 3s linear infinite;
    }

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.modal-dialog {
    margin: 0 auto;
}

.modal-content-responsive {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
}

.panels-responsive {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.panel {
    padding: 15px;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

@media(min-width: 768px) {
    .panel {
        width: 50%;
    }
}

.panel-left-border {
    border-left: 2px solid #F5F5F5;
}

.panel-right-border {
    border-right: 2px solid #F5F5F5;
}

.inputField-customizable {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(98 70 192 / 60%);
    border-radius: 10px;
    color: rgb(33, 37, 41);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

    .inputField-customizable:focus {
        border-color: #6246C0 !important;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(98, 70, 192, 0.3) !important;
    }

.idpButton-customizable, .submitButton-customizable {
    width: 100%;
    padding: 6px;
    background: linear-gradient(135deg, #6246C0, #8a6fd1);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .idpButton-customizable:hover, .submitButton-customizable:hover {
        background: linear-gradient(135deg, #7a5bd9, #9b85e8);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(98, 70, 192, 0.4);
    }

.banner-customizable {
    text-align: center;
    padding: 5px 0px 30px 0px;
    background: #fff;
}

    .banner-customizable uc1\:LoginSiteLogoUC, .banner-customizable img {
        max-width: 60%;
        height: auto;
    }

@media(max-width: 767px) {
    .banner-customizable uc1\:LoginSiteLogoUC, .banner-customizable img {
        max-width: 40%;
    }
}

.login-type-tabs {
    display: flex;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.login-type-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(98, 70, 192,0.4);
    border: none;
    outline: none;
}

    .login-type-tab.active {
        color: white;
        background: rgba(98, 70, 192);
    }

    .login-type-tab:hover:not(.active) {
        background: rgba(98, 70, 192, 0.5);
    }


.label-customizable {
    margin: 10px 0px 5px 0px !important;
}

.idpDescription-customizable, .textDescription-customizable {
    display: block;
    text-align: center;
    color: #344054;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 25px;
}

.redirect-customizable {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #6741c7;
    font-weight: 600;
    margin-top: 25px;
}

.or-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A3A3A3;
    font-size: 16px;
    font-weight: 600;
}


@media (min-width: 768px) {
    .or-separator {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        color: #A3A3A3;
        font-size: 16px;
        font-weight: 600;
        padding: 0 10px;
        border-radius: 50%;
        text-align: center;
    }

        .or-separator::before,
        .or-separator::after {
            margin: 0 10px;
        }
}

@media(max-width:767px) {
    .or-separator {
        position: relative;
        width: 100%;
        text-align: center;
        margin: 15px 0;
        transform: none;
    }

        .or-separator::before,
        .or-separator::after {
            content: '';
            flex: 1;
            height: 2px;
            background: #d0d5dd;
            margin: 0 10px;
        }

    .panel-right-border {
        border: 0;
    }
}

@media (max-width: 550px){
    .login-container {
        width: 100%;
    }
}

@media (max-height: 700px) {
    body {
        overflow-y: auto !important;
    }
}

@media (min-height: 700px) {
    body {
        overflow-y: auto !important;
    }
}


.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.login-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(-15deg) scale(1.2);
}

.login-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.login-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}