.tabs {
    display: flex;
    cursor: pointer;
    justify-content: center;
    background: #fff;
    padding: 31px;
    box-shadow: 4px 4px 4px #00000059;
    border-radius: 10px;
}
        .tab {
            padding: 10px 20px;
            background: #f7f7f7;;
            border: 1px solid #ccc;
            margin-right: 5px;
        }
        .tab.active {
            background: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
            border-bottom: none;
            color: #fff;
            border-radius: 3px;
        }
        .tab-content {
            display: none;
            padding: 20px;
           
        }
        .tab-content.active {
            display: block;
        }


         .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 300px;
            text-align: center;
            position: relative;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 20px;
        }
        .popup-form input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .popup-form button {
                font-size: 14px;
    background-image: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
    padding: 13px 22px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    border: none;
}