/*
Theme Name: ABC Learning
Theme URI: https://cybersofty.com
Author: CyberSofty
Author URI: https://cybersofty.com
Description:  ABC Learning Portal
Version: 1.0.0
Text Domain: abc-theme
*/

* {margin:0;padding:0;box-sizing:border-box;}



body {
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

.abc-login-box {
    background:#fff;
    padding:50px 40px;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    width:100%;
    max-width:400px;
    text-align:center;
}

.abc-login-box h1 {
    font-size:28px;
    margin-bottom:5px;
    color:#333;
}

.abc-login-box > p {
    color:#999;
    font-size:14px;
    margin-bottom:30px;
}

.abc-login-box h2 {
    font-size:22px;
    margin-bottom:25px;
}

.abc-form-group {
    margin-bottom:20px;
    text-align:left;
}

.abc-form-group label {
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#666;
}

.abc-form-group input {
    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
}

.abc-form-group input:focus {
    outline:none;
    border-color:#00C853;
}

.abc-remember {
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
}

.abc-remember input {
    width:auto;
}

.abc-submit {
    width:100%;
    padding:14px;
    background:#00C853;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.abc-submit:hover {
    background:#00b348;
}

.abc-forgot {
    margin-top:15px;
    text-align:center;
}

.abc-forgot a {
    color:#00C853;
    text-decoration:none;
    font-size:14px;
}

.abc-error {
    background:#fee;
    border:1px solid #fcc;
    color:#c33;
    padding:12px;
    border-radius:6px;
    margin-bottom:20px;
    font-size:14px;
}

@media (max-width:480px) {
    .abc-login-box {
        padding:40px 25px;
        margin:20px;
    }
}
