* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #F7F7F7;
    color: #333;
    height: 100vh;
}

.bg-section {
    background-image: url(../images/home/SignIn.jpg);
    background-size: cover;background-position: center;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #174D38;
    height: 100%;
}
.signsec{
    background-image: url(../images/home/SignUp2.jpg);
    background-size: cover;background-position: center;    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #174D38;
}
.bg-content {
    max-width: 600px;
    background-color: #00000048;
    padding: 15px 100px  15px  20px;
    border-radius: 10px;
}

.bg-content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #F7F7F7;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bg-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #F7F7F7;
}

.testimonial {
    background: rgba(255, 255, 255, 0.438);
    padding: 15px;
    border-radius: 10px;
    color: #F7F7F7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-author span {
    font-size: 14px;
    color: #F7F7F7;
    display: block;
}

.form-section {
    background-color: #F7F7F7;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-content {
    max-width: 400px;
    width: 100%;
}

.form-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-control {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 20px;
    font-size: 14px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.053);
}

.btn-login {
    width: 100%;
    padding: 8px 5px;
    font-size: 16px;
    background-color: #79BE70;
    color: #F7F7F7;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-login:hover {
    width: 100%;
    padding: 8px 5px;
    font-size: 16px;
    background-color: #68af5f;
    color: #F7F7F7;
    scale: 1.01;
    border: none;
}

.btn-step {
    width: 100%;
    padding: 7px 4px;
    font-size: 16px;
    background-color: #addc9157;
    color: #79BE70;
    border: solid 1px #68af5f;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-step:hover {
    width: 100%;
    padding: 7px 4px;
    font-size: 16px;
    background-color: #addc9157;
    color: #79BE70;
    border: none;
    scale: 1.01;
    border: solid 1px #68af5f;
}
.upload-button {
    margin-top: 10px;
    padding: 7px 40px;
    background-color: #5394fb;
    color: #F7F7F7;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.upload-button:hover {
    background-color: #5394fb;
}
.btn-google {
    width: 100%;
    padding: 8px 5px;
    margin-bottom: 10px;
    background-color: #5394fb;
    color: #F7F7F7;
    border-radius: 0px;
    border: none;
    font-size: 14px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-google:hover  {
    width: 100%;
    padding: 8px 5px;
    margin-bottom: 10px;
    background-color: #5394fb;
    color: #F7F7F7;
    border-radius: 0px;
    border: none;
    font-size: 14px;
    scale: 1.01;
}

.forgot-password {
    text-align: right;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #174D38;
    font-size: 14px;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.signup-link a {
    color: #2578ff;
    text-decoration: none;
}

.remember-section {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 20px;
    font-size: 15px;
}

.remember-section label {
    color: #174D38;
    margin-left: 10px;
    margin-top: 10px;
}

.separator {
    text-align: center;
    margin: 10px 0;
    color: #7a7a7a;
    position: relative;
}

.separator:before,
.separator:after {
    content: "";
    display: block;
    width: 30%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
}

.separator:before {
    left: 0;
}

.separator:after {
    right: 0;
}


    /* Progress Bar Styling */
    .progress {
        height: 20px;
        margin-bottom: 30px;
    }

    .progress-bar {
        background-color: #79BE70;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }


    /* Profile Picture Styling */
    .profile-pic-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #79BE70;
        margin-bottom: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .profile-pic-upload {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-pic-upload input[type="file"] {
        display: none;
    }

    .profile-pic-upload label {
        cursor: pointer;
        border: 2px solid #79BE70;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        overflow: hidden;
    }

    .profile-pic-upload label:hover {
        background-color: #f0f0f0;
    }


@media (max-width: 768px) {
    .bg-section {
        display: none;
    }

    .form-section {
        width: 100%;
    }
}

/*-------------------*/

.profile-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #F7F7F7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 40px;
    margin-left: 40px;
}
.card-section {
    background-color: #F7F7F7;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}
.card-title {
    margin-bottom: 20px;
}
.pro-container{
    background-color: #ffffff;
    padding : 10px 70px;
    display: flex;
}

@media (max-width: 768px) {
    .pro-container{
        background-color: #ffffff;
        padding : 15px 15px;
        display: flex;
        flex-direction: column;
        }
    .profile-pic {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin-right: 25px;
        margin-left: 10px;
    }
    
.rem-maring{
    
    padding: 0 !important;
}
}


.second-notification-bar {
    background-image: url(../../assets/images/Patterns/Asset1.png);
    background-size: cover;
    background-position: center;
    background-color: #68af5f;
    color: var(--colour-white);  /* Dark green text color to match your theme */
    padding: 30px;
    text-align: center;
    font-size: 30px;
    border-top: 1px solid #79BE70;  
    border-bottom: 1px solid #79BE70;/* Thin border for separation */
    width: 100%;
    top: 0;
    z-index: 9999;  /* Ensures it stays on top */
    letter-spacing: 2px;
    font-weight: 700;
}

.second-notification-text {
    margin: 0;

}


@media (max-width: 768px) {
    .second-notification-bar {
        background-color: var(--colour-main);
       color: var(--colour-white);  /* Dark green text color to match your theme */
        padding: 15px;
        text-align: center;
        font-size: 15px;
        border-bottom: 1px solid #ddd;  /* Thin border for separation */
        width: 100%;
        top: 0;
        z-index: 9999;  /* Ensures it stays on top */
    }
    
    .second-notification-text {
        margin: 0;
    }
}
