  .signup-form h2{
    font-size: 20px;
}
      .tab-container {
            width: 600px;
            margin: 16px auto 50px;
        }

        .tab-buttons {
            display: flex;
            gap: 25px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }


        .tab-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 16px;
            color: #666;
            transition: 0.3s;
            padding: 5px 0;
        }


        .tab-btn::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            transition: 0.3s;
        }

     


        .tab-btn.active {
            color: #f0483e;
            font-weight: 700;
        }
        .tab-btn.active::before {
            background: #f0483e;
        }


        .tab-content {
            display: none;
        }
        .tab-content.show {
            display: block;
        }
.signup-overseas img{
    max-width: 150px;
    padding-top: 10px;
}
.signup-overseas p{
    margin-bottom: 5px;
    font-size: 15px;
}