body {
    background: url('..//images/bg.jpg');
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}
.main-form {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px #dadada;
    border-radius: 10px;
    margin-top: 30px;
}
.sub_header {
    background: linear-gradient(174deg, #0a0b64, #362f62);
    text-align: center;
    padding: 20px 0px;
    border-radius: 20px;
}
.sub_header img {
    max-width: 200px;
}
.sub_header h6 {
    font-size: 23px;
    color: #fff;
    text-transform: capitalize;
    font-weight: normal;
    padding-top: 22px;
    position: relative;
}
.sub_header h6::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    width: 51px;
    border-bottom: 2px #f5db89 solid;
    text-align: center;
    border-radius: 30px;
    margin: auto;
}
.input-control {
    width: 100%;
    padding: 9px 16px;
    border: 1px #cecece solid;
    border-radius: 6px;
    box-shadow: 0px 0px 10px rgb(231 231 231);
    background: #fff;
}
.input-control::placeholder {
    color: #cecece;
}
.submit-btn {
    background:linear-gradient(45deg, #2aa1e7, #489ed7);
    width: 100%;
    margin-top: 15px;
    border-radius: 5px;
    border: 0px;
    color: #fff;
    padding: 6px 0;
    font-size: 19px;
}
.toggle-password {
    position: absolute;
    right: 21px;
    bottom: 12px;
    font-size: 18px;
    cursor: pointer;
}

        .progress-bar-container {
            width: 100%;
            height: 10px;
            background-color: #f0f0f0;
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            /* Initial width, will be updated by JavaScript */
            background-color: #4CAF50;
            /* Green for strong */
            transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
            font-size: 9px;
        }

        #password-strength-text {
            margin-top: 10px;
            font-size: 0.9em;
            color: #555;
        }

/* Success page */
    .success-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      animation: fadeInUp 0.8s ease;
    }
    .success-icon {
      font-size: 60px;
      color: #28a745;
      animation: pop 0.5s ease;
    }
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes pop {
      0% { transform: scale(0.8); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    .btn-custom {
        background: linear-gradient(103.75deg, #33B1EE -13.9%, #7366ff 79.68%);
        color: #fff;
        border-radius: 10px;
        padding: 10px 25px;
        transition: 0.3s;
        font-weight: bold;
        font-size: 18px;
    }
    .btn-custom:hover {
      background: #218838;
    }
    .success-card h2 {
        color: #02b701;
    }
    .success-card p {
        color: #ffffff;
        font-size: 16px;
        text-transform: capitalize;
        background:linear-gradient(103.75deg, #33B1EE -13.9%, #7366ff 79.68%);
        padding: 10px;
        /* margin: 0px; */
        border-radius: 10px;
    }
    h5.mainboxes {
        font-weight: normal;
        line-height: 28px;
        text-transform: capitalize;
        color: #000;
        font-size: 16px;
    }


     .button-pulse {
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            background:linear-gradient(174deg, #f5d885, #7c5823);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            outline: none;
            box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
            animation: pulse 1.8s infinite;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .button-pulse:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
        }

        .button-pulse:active {
            transform: scale(0.96);
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
            }

            70% {
                box-shadow: 0 0 0 14px rgba(139, 92, 246, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
            }
        }

        .center-btn {
            display: flex;
            justify-content: center;
            align-items: center;
        }