/* Added clean DepEd-style login design */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .login-header {
            padding: 15px 30px;
            border-bottom: 1px solid #e5e5e5;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .login-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .deped-logo {
            width: 40px;
            height: 40px;
        }
        
        .login-header-title {
            font-size: 16px;
            color: #333;
            margin: 0;
            font-weight: 400;
        }
        
        .help-link {
            color: #0066cc;
            text-decoration: none;
            font-size: 14px;
        }
        
        .help-link:hover {
            text-decoration: underline;
        }
        
        .login-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        .login-form-container {
            width: 100%;
            max-width: 320px;
        }
        
        .login-title {
            font-size: 24px;
            font-weight: 400;
            color: #333;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-control {
            width: 100%;
            padding: 10px 12px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4d90fe;
            box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2);
        }
        
        .btn-signin {
            background-color: #4285f4;
            color: white;
            border: none;
            padding: 10px 24px;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .btn-signin:hover {
            background-color: #357ae8;
        }
        
        .forgot-password-box {
            margin-top: 30px;
            padding: 20px;
            background-color: #f5f5f5;
            border-radius: 4px;
        }
        
        .forgot-password-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0 0 10px 0;
        }
        
        .forgot-password-text {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }
        
        .login-footer {
            padding: 20px 30px;
            border-top: 1px solid #e5e5e5;
            color: #666;
            font-size: 13px;
        }
        
        .alert {
            padding: 12px 16px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            border: 1px solid #f5c2c7;
            color: #842029;
        }

        .deped-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

/*footer css pki edit nlng dito*/
.login-footer {
    display: flex;
    justify-content: center; /* center the content */
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    text-align: center;
}

.footer-left {
    color: #1877F2;
    font-weight: bold;
    text-decoration: none;
    padding-left: 20px; /* 👈 adds space on the left */
}

.footer-left:hover {
    text-decoration: underline;
}

.footer-right {
    color: #555;
}
