/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress
Author: Balwinder Singh
Author URI: https://example.com
Template: generatepress
Version: 1.0
*/

/* Your custom CSS below */
.registerform {
	padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.signup-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    
}

/* each field */
.form-group {
    width: 48%;
}

/* labels */
.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    display: inline-block;
    width: 100%;
}
.form-group label .required {
color: #F00;
}
/* inputs + select */
.form-group input,
.form-group select {
    height: 38px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fafafa;
    transition: 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2271b1;
    background: #fff;
}
.form-message {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border-radius: 6px;
    display: none;
    font-size: 14px;
}

.form-message.error {
    background: #ffecec;
    color: #d63638;
    border: 1px solid #d63638;
}

.form-message.success {
    background: #ecf7ed;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}
#lmsLoginForm .form-group, #lmsForgotPasswordForm .form-group, #lmsResetPasswordForm .form-group {
    width: 100%;
}
span.error-text {
    color: #F00;
    font-size: 13px;
}
.registerform p {
    margin-bottom: 0;
}
.btn-wrap {
    width: 100%;
    display: flex;
}
.btn-wrap [type="submit"] {
    height: 38px;
    padding: 0 22px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 150px;
}

.btn-wrap [type="submit"]:hover, .btn-wrap [type="submit"]:focus {
    background: #135e96;
} 
.ld-course-list-items.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ld_course_grid {
    width: 48%;
    margin-bottom: 20px;
}
.courses-list h3 {
    background: #1e73be;
    padding: 13px;
    color: #FFF;
    font-size: 20px;
    margin-bottom: 20px;
}
.courses-list .course-item {
    margin: 5px 0;
}
.courses-list .course-item a {
    text-decoration: none;
}
.courses-list .course-item a:hover {
    opacity: 0.7;
}
.available-courses h3 {
    margin-top: 30px;
}
.enrolled-courses {
    margin-top: 30px;
}
.ld-navigation__next-link--just-completed {
    display: none !important;
}
.dashboard-section {
    margin-bottom: 30px;
}
.dashboard-section .section-header {
    background: #2e6da4;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 25px;
}
.dashboard-section .section-header h3 {
    margin-bottom: 0; 
    font-size: 20px;
}

/*.learndash_mark_complete_button:disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed; 
}
 
.learndash_mark_complete_button:not(:disabled) {
    background-color: #1e73be !important;
    border-color: #1e73be !important;
    color: #ffffff !important;
    cursor: pointer;
}*/
.magic-links {
    margin-bottom: 15px;
}
.magic-links .sso_login_link {
    text-decoration: none;
    margin: 0 15px 15px 0;
    display: block;
}