body {
    background: url('..//images/bg.jpg');
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}
body:before {
    content: "";
    background: #ffffffbf;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
}
.custom-card {
    background: #fff;
    box-shadow: 0px 0px 10px rgb(225 216 216);
    border-radius:.75rem;
    margin: 40px 0px;
}
.sub_header {
    background: #41c07d;
    padding: 16px;
    display: flex;
    gap: 15px;
}
.sub_header img {
    max-width: 160px;
}
.sub_header h6 {
    font-size: 24px;
    color: #000000;
    text-transform: capitalize;
    font-weight: bold;
    position: relative;
}
.sub_header p {
    color: #fff;
    margin: 0px;
}
.input-control {
    padding: 12px 15px;
    border-radius: 3px;
    width: 100%;
    background: #fff;
    border: solid 1px #d1d1d1;
    font-family: Muller, sans-serif;
    box-shadow: 0 13px 10px #00000005;
}
.input-control:focus {
    border: #c74141;
    border: #c74141;

}
.form-wrap label {
    text-transform: uppercase;
    color: #798c80;
    font-size: 13px;
    display: block;
    line-height: 1.1;
    font-weight: normal;
}
.input-control::placeholder {
    color: #cecece;
    font-size: 12px;
}
.submit-btn {
    background: #41c07d;
    width: 100%;
    margin-top: 15px;
    border-radius: 5px;
    border: 0px;
    color: #fff;
    padding: 11px 15px;
    box-shadow: 0 0 60px #23905752;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}
.toggle-password {
    position: absolute;
    right: 21px;
    bottom: 12px;
    font-size: 18px;
    cursor: pointer;
}
a.tgreen {
    font-size: 16px;
    color: #000;
}

        .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(rgb(65, 192, 125), rgb(99, 231, 140));
        color: #fff;
        border-radius: 10px;
        padding: 10px 25px;
        transition: 0.3s;
        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(rgb(65, 192, 125), rgb(99, 231, 140));
        padding: 10px;
        /* margin: 0px; */
        border-radius: 10px;
    }
    h5.mainboxes {
        font-weight: normal;
        line-height: 28px;
        text-transform: capitalize;
        color: #000;
        font-size: 16px;
    }
.sub_header2 {
    background: url('..//images/bg2.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub_header2 h6 {
    color: #fff;
    font-size: 30px;
}

.text-green{
    color:#41c07d;
}
@media screen and (max-width:480px){

    .sub_header img {
        max-width: 60px;
    }
   
}