/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Custom child theme for Astra + Academy LMS
Author: Shah Fayez Ali
Author URI: https://example.com/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Custom CSS */

/* Custom Auth Pages */
.custom-auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.custom-auth-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.custom-auth-container:hover {
    transform: translateY(-5px);
}

.custom-auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.custom-auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.custom-auth-header p {
    color: #718096;
    font-size: 15px;
}

.custom-auth-form form {
    display: flex;
    flex-direction: column;
}

.custom-auth-form p {
    margin-bottom: 20px;
}

.custom-auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.custom-auth-form input[type="text"],
.custom-auth-form input[type="email"],
.custom-auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a202c;
    background-color: #f7fafc;
    transition: all 0.3s ease;
}

.custom-auth-form input[type="text"]:focus,
.custom-auth-form input[type="email"]:focus,
.custom-auth-form input[type="password"]:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
    background-color: #ffffff;
}

.custom-auth-form .forgetmenot {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
}

.custom-auth-form .forgetmenot input[type="checkbox"] {
    margin-right: 8px;
}

.custom-auth-form input[type="submit"],
.custom-auth-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.custom-auth-form input[type="submit"]:hover,
.custom-auth-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

.custom-auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #4a5568;
}

.custom-auth-footer a {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-auth-footer a:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

.forgot-pass-link {
    display: inline-block;
    margin-bottom: 15px;
}

.custom-auth-errors {
    background-color: #fed7d7;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #e53e3e;
}

.custom-auth-errors p {
    margin: 0;
}
