body {
    background: url('..//images/bg.jpg');
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}
.custom-card {
    background: #fff;
    box-shadow: 0px 0px 10px rgb(225 216 216);
    border-radius: 30px;
    margin: 40px 0px;
}
.sub_header {
    background: linear-gradient(45deg, #2aa1e7, #489ed7);
    text-align: center;
    padding: 10px 0px 22px;
    border-radius: 20px;
}
.sub_header img {
    max-width: 200px;
}
.sub_header h6 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
    padding-top: 9px;
    position: relative;
}
.sub_header h6::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    width: 100px;
    border-bottom: 2px #ffffff 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;
    }