    .password-wrapper {
        position: relative;
    }

    .password-wrapper input {
        padding-right: 40px;
        /* space for icon */
    }

    .toggle-password {
        position: absolute;
        right: 12px;
        top: 36px;
        cursor: pointer;
        font-size: 18px;
        color: #999;
        user-select: none;
    }

    .toggle-password:hover {
        color: #C82333;
    }

    .role-options {
        display: flex;
        gap: 1rem;
    }

    .role-card {
        cursor: pointer;
        position: relative;
        flex: 1;
        transition: transform 0.2s;
    }

    .role-card input[type="radio"] {
        display: none;
    }

    /* Card styling */
    .role-card .card {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px 10px;
        text-align: center;
        transition: all 0.2s;
        color: #0f0f12bf;
    }

    /* Checked state */
    .role-card input[type="radio"]:checked+.card {
        background-color:   #000;
        color: #fff;
        border: 2px solid #000;
    }

    /* Hover effect */
    .role-card .card:hover {
        transform: scale(1.03);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }



    /* Responsive: stack on mobile */
    @media (max-width: 576px) {
        .role-options {
            flex-direction: column;
        }
    }

    .center {
          width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;   /* 🔥 NOT center */
    padding-top: 2px;         /* small controlled spacing */
    padding-bottom: 20px;
        
    }

    .signUp {
        display: flex;
        width: 900px;
        max-width: 90%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }

    .left {
        flex: 1;
        position: relative;
        background: url('{{ asset("images/auth-image.png") }}') no-repeat center/cover;
    }

    .left .back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #C82333;
    }

    .left .carousel-inner h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #fff;
    }

    .left .carousel-inner p {
        font-size: 16px;
        color: #fff;
    }

    .right {
        flex: 1;
        padding: 40px 30px;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .right h1 {
        margin-bottom: 20px;
        font-size: 28px;
        color: #C82333;
    }

    .field {
        margin-bottom: 20px;
    }

    .input-bordered {
        display: flex;
        flex-direction: column;
    }

    .input-bordered label {
        margin-bottom: 5px;
        font-size: 14px;
        color: #555;
    }

    .input-bordered input,
    .input-bordered select {
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        transition: 0.2s;
    }

    .input-bordered input:focus,
    .input-bordered select:focus {
        border-color: #C82333;
    }

    .input-bordered span.text-danger {
        font-size: 13px;
        margin-top: 3px;
    }

    input[type="submit"] {
        background-color: #C82333;
        color: #fff;
        font-size: 16px;
        padding: 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.2s;
    }

    input[type="submit"]:hover {
        background-color: #a31d2f;
    }

    @media (max-width: 991.98px) {
        .signUp {
            flex-direction: column;
            width: 90%;
        }

        .left,
        .right {
            flex: unset;
            width: 100%;
        }

        .left {
            height: 200px;
        }
    }


.btn-google-color {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285F4; /* Google Blue */
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google-color:hover {
    background: #357ae8; /* slightly darker blue on hover */
}

.btn-google-color i.fab-google {
    font-size: 20px;
    margin-right: 8px;
}