/* 05-12-2023 - login page styles */

.login-area {
    min-height: 450px;
    padding: 80px 0;
    margin-top: 90px;
}

.login-section {
    display: flex;
}

.login-img {
    width: 50%;
    background: lightblue;
}

.login-img img {
    width: -webkit-fill-available;
    object-fit: cover;
    height: 100%;
}

.login-form {
    width: 50%;
    padding: 90px 50px;
    /* background: #692eb0; */
    background: #29153d;
}

.innerpage-login-title {
    font-size: 50px;
    font-weight: 300;
}

.login-form input {
    padding: 25px 30px;
    border-radius: 0;
}

.login-btn {
    width: 100%;
    border: 1px solid white !important;
}

.login-btn span {
    color: white !important;
}

.forgot-password {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.forgot-password label {
    color: white;
}

.forgot-password-checkbox {
    width: 24px;
    height: 24px;
    outline:1px solid white;
}

@media screen and (max-width:991px) {
    .login-area {
        margin-top: 81px;
        padding: 40px 0;
    }

    .login-img {
        display: none;
    }

    .login-form {
        width: 100%;
    }
}


/* 05-12-2023 - course detail page styles */

.course-header {
    margin-top: 90px;
    position: relative;
    min-height: 410px;
    background-color: #28232f;
    background-image: url(../images/sample-course.jpg);
    display: flex;
    align-items: end;
    padding-bottom: 60px;
}

.course-header::after {
    content: "";
    
    background: linear-gradient(180deg, rgb(0 0 0 / 21%) 0%, rgb(31, 28, 35) 90%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: 0;
}

.course-content-area {
    position: relative;
    z-index: 1;
}

.btn-white {
    border: 1px solid white !important;
}
.btn-white span {
    color: white !important;
}

.course-content h3 {
    font-size: 50px;
    font-weight: 300;
    color: white;
}

.course-content p {
    font-size: 18px;
}

.course-content {
    max-width: 80%;
}

.course-detailed-content-area {
    padding: 80px 0;
}

.course-detailed-content p {
    font-size: 18px;
}

@media screen and (max-width:991px) {
    .course-content {
        max-width: 100%;
    }
    .course-header {
        margin-top: 81px;
        padding-bottom: 30px;
    }
}

/* 05-12-2023 - my account page styles */

.my-account-section {
    margin-top: 90px;
    padding: 80px 0;
}

.account-header-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: #692EB0;
    border-radius: 0px;
}

.my-account-page-title {
    font-size: 50px;
    font-weight: 300;
}

.profile-pic img {
    width: 100px;
    height: 100px;
    outline: 2px solid lightgrey;
}

.user-detail {
    color: white;
}

.my-accounts-tabs {
    background-color:#29153d;
    padding: 0 10px;
}

.my-accounts-tabs li button {
    color: white;
    border-radius: 0 !important;
    padding: 15px 30px;
    border: none !important;
}

.my-accounts-tabs li button span {
    min-width: 30px;
    background: grey;
    border-radius: 100px;
    margin-left: 9px;
    padding: 4px 8px;
    font-size: 15px;
}

.my-accounts-tabs li button:hover {
    border: none !important;
    background-color: #391d54;
    color: white;
}

.my-accounts-tab-area {
    border: 2px solid #29153d;
}

.user-detail p {
    font-size: 20px;
    font-weight: 300;
}

.account-detail-tab-pane {
    padding: 15px;
    min-height: 350px;
}
.update-profile,.update-course {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E5E5E5;
    padding: 10px;
}

@media screen and (max-width:768px) {
    .update-profile,.update-course {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.edit-profile-btn {
    padding: 8px 12px;
    border: none;
    background-color: white;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 560px;
    overflow: auto;
}

.course {
    display: flex;
    padding: 14px;
    gap: 20px;
    border: 1px solid #e7e7e7;
    transition: all 0.3s;
    cursor: default;
}

.course:hover {
    background-color: #f2f2f2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.course-img {
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .course-img {
        display: none;
    }
}

.course-img img {
    min-width: 200px;
    height: 100%;
    min-height: 140px;
    max-height: 170px;
    object-fit: cover;
}

.course-action .resume-course-btn {
    padding: 10px !important;
}

.course-action .resume-course-btn span {
    padding-right: 40px !important;
}

.course-info-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.course-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
}

.course-info  p {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-info .row:not(:last-child) {
    margin-bottom: 25px;
}

.head-btn{
    padding: 5px 10px 5px !important;
}
