﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background: url(https://cdn.svgator.com/images/2022/06/use-svg-as-background-image-particle-strokes.svg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.containers {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 1080px;
    width: 100%;
    min-height: 600px;
}

.left-panel {
    flex: 1.5;
   
}

    .left-panel img {
       
    }

.right-panel {
    position: relative;
    flex: 1;
    padding: 55px 35px;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

    .right-panel::before {
        /*  content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/Images/auriCash.png') no-repeat center center/cover;
        opacity: 0.15;
        z-index: -1;*/
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(/assets/images/5.png) no-repeat center center / cover;
        opacity: 0.15;
        z-index: -1;
        background-size: contain;
        
    }


input {
    padding: 10px;
    border: 2px solid #ccc; /* Normal border */
    outline: none; /* Default black outline remove */
    border-radius: 8px;
    transition: 0.3s;
}

    input:focus {
        border-color: #e60000; /* Red border on focus */
        box-shadow: 0 0 6px rgba(230, 0, 0, 0.5); /* Red glow */
    }

.right-panel h2 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    color: #e60000;
    text-decoration: underline;
}

.right-panel p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 1px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 16px;
    border-radius: 0px;
    /* background: #f9f9f9a1; */
    font-size: 15px;
    border: none;
    background: none;
    border-bottom: 2px solid #6d2795;
}

#mobileNo {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9a1;
    font-size: 15px;
}

label {
    font-size: 14px;
    color: #444;
    display: block;
}
.termss {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    justify-content: center;
}
.terms {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    justify-content: space-between;
}

    .terms input {
        margin-right: 10px;
    }

.btn_save {
    background: #df2248;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn_save:hover {
        background: #df2248;
    }

.signin-link {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

    .signin-link a {
        color: #2196f3;
        text-decoration: none;
    }

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 15px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        text-decoration: none;
        transition: transform 0.4s ease, background 0.3s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

        .social-icons a:hover {
            transform: rotate(360deg) scale(1.1);
        }

.facebook {
    background: #3b5998;
    color: white;
}

.whatsapp {
    background: #25d366;
    color: white;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.twitter {
    background: #1da1f2;
    color: white;
}




/* === LEFT SLIDER === */
.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    width: 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        filter: brightness(90%);
        transition: transform 8s ease-in-out;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .carousel-item.active img {
        transform: scale(1.05);
    }

.carousel-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    text-align: left;
    color: #fff;
    max-width: 500px;
}

    .carousel-caption h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .carousel-caption p {
        font-size: 1rem;
        color: #e0e0e0;
    }

.carousel-indicators {
    left: 60px;
    bottom: 20px;
    justify-content: flex-start;
}

    .carousel-indicators button {
        background-color: #fff;
        opacity: 0.2;
    }

    .carousel-indicators .active {
        background-color: var(--primary);
        opacity: 1;
    }

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background: none;
    border: none;
    border-bottom: 2px solid red;
    border-radius: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #dc3545 !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}