/* WRAPPER */
.lms-modern-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

/* TITLE */
.modern-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #c39d38, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */
.modern-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.modern-card {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.modern-card:hover {
    transform: translateY(-6px);
}

/* HEAD */
.modern-card h3 {
    margin-bottom: 15px;
    color: #2d3748;
}

/* LIST */
.modern-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
    color: #555;
}

/* BUTTON */
.modern-btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #4facfe, #00c6ff);
    color: #fff;
    text-decoration: none;
}

.modern-btn.alt {
    background: linear-gradient(135deg, #f6d365, #fda085);
}

.modern-btn.purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* INPUT */
.modern-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* LOGIN BUTTON */
.modern-login-btn {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    font-weight: 600;
}

/* FORGOT */
.modern-forgot {
    text-align: right;
    margin-top: 8px;
    font-size: 13px;
}

/* DOCS */
.modern-docs {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
}

.modern-docs h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.modern-docs a {
    display: block;
    margin: 10px auto;
    padding: 12px 18px;
    max-width: 320px;
    background: #ffffff;
    color: #4facfe;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.modern-docs a:hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(79, 172, 254, 0.3);
}

.modern-docs a:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media(max-width:768px){
    .modern-grid {
        flex-direction: column;
    }
}